mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
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
|
||
|
}
|