grafana/pkg/services/anonymous/service.go
Jo ffbf1b1413
Anon: Small fixes to anon service structure (#79566)
* add ListDevices to service

* improve fake

* fix missing cfg field

* cannot be unexported
2023-12-15 15:15:04 +01:00

22 lines
478 B
Go

package anonymous
import (
"context"
"net/http"
"time"
"github.com/grafana/grafana/pkg/services/anonymous/anonimpl/anonstore"
)
type DeviceKind string
const (
AnonDeviceUI DeviceKind = "ui-anon-session"
)
type Service interface {
TagDevice(context.Context, *http.Request, DeviceKind) error
CountDevices(ctx context.Context, from time.Time, to time.Time) (int64, error)
ListDevices(ctx context.Context, from *time.Time, to *time.Time) ([]*anonstore.Device, error)
}