mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
529e6c379f
Chore: Remove Result field from dashboard snapshot mode;
14 lines
538 B
Go
14 lines
538 B
Go
package dashboardsnapshots
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Store interface {
|
|
CreateDashboardSnapshot(context.Context, *CreateDashboardSnapshotCommand) (*DashboardSnapshot, error)
|
|
DeleteDashboardSnapshot(context.Context, *DeleteDashboardSnapshotCommand) error
|
|
DeleteExpiredSnapshots(context.Context, *DeleteExpiredSnapshotsCommand) error
|
|
GetDashboardSnapshot(context.Context, *GetDashboardSnapshotQuery) (*DashboardSnapshot, error)
|
|
SearchDashboardSnapshots(context.Context, *GetDashboardSnapshotsQuery) (DashboardSnapshotsList, error)
|
|
}
|