mirror of https://github.com/grafana/grafana.git
12 lines
296 B
Go
12 lines
296 B
Go
package dashver
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Service interface {
|
|
Get(context.Context, *GetDashboardVersionQuery) (*DashboardVersion, error)
|
|
DeleteExpired(context.Context, *DeleteExpiredVersionsCommand) error
|
|
List(context.Context, *ListDashboardVersionsQuery) ([]*DashboardVersionDTO, error)
|
|
}
|