mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* chore/backend: move dashboard errors to dashboard service Dashboard-related models are slowly moving out of the models package and into dashboard services. This commit moves dashboard-related errors; the rest will come in later commits. There are no logical code changes, this is only a structural (package) move. * lint lint lint
9 lines
214 B
Go
9 lines
214 B
Go
package dashboardsnapshots
|
|
|
|
import "github.com/grafana/grafana/pkg/services/dashboards"
|
|
|
|
var ErrDashboardSnapshotNotFound = dashboards.DashboardErr{
|
|
Reason: "Dashboard snapshot not found",
|
|
StatusCode: 404,
|
|
}
|