mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
ff78103a24
* add anon sessions package * add usage stat fn * implement count for cache * add anonservice to authn broker * lint * add tests for remote cache count * move anon service to services * wrap tagging in goroutine * make func used
11 lines
131 B
Go
11 lines
131 B
Go
package anonymous
|
|
|
|
import (
|
|
"context"
|
|
"net/http"
|
|
)
|
|
|
|
type Service interface {
|
|
TagSession(context.Context, *http.Request) error
|
|
}
|