dnote/pkg/server/models/errors.go
2021-01-07 21:17:55 +11:00

12 lines
207 B
Go

package models
import (
"github.com/pkg/errors"
)
type modelError string
var (
// ErrNotFound an error that indicates that the given resource is not found
ErrNotFound error = errors.New("not found")
)