mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
040b7d2571
Add helpers for the errutil package in favor of errutil.NewBase.
8 lines
207 B
Go
8 lines
207 B
Go
package dashboardsnapshots
|
|
|
|
import (
|
|
"github.com/grafana/grafana/pkg/util/errutil"
|
|
)
|
|
|
|
var ErrBaseNotFound = errutil.NotFound("dashboardsnapshots.not-found", errutil.WithPublicMessage("Snapshot not found"))
|