mirror of
https://github.com/grafana/grafana.git
synced 2025-08-06 02:29:33 +08:00

* Add store split for Get Dashboard version method * Implement dashboard version service * Fix api tests * Remove GetDashboarVersion from sqlstore * Add fakes for Get dashboard version * Fix sqlstore test * Add Get Dashboard store test * Add dashver service test * Remove useless comments
10 lines
153 B
Go
10 lines
153 B
Go
package dashver
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Service interface {
|
|
Get(ctx context.Context, query *GetDashboardVersionQuery) (*DashboardVersion, error)
|
|
}
|