mirror of
https://github.com/grafana/grafana.git
synced 2025-07-28 22:52:20 +08:00
12 lines
302 B
Go
12 lines
302 B
Go
package dashver
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Service interface {
|
|
Get(context.Context, *GetDashboardVersionQuery) (*DashboardVersionDTO, error)
|
|
DeleteExpired(context.Context, *DeleteExpiredVersionsCommand) error
|
|
List(context.Context, *ListDashboardVersionsQuery) (*DashboardVersionResponse, error)
|
|
}
|