dnote/pkg/server/database/errors.go
2022-04-17 10:47:43 +10:00

12 lines
209 B
Go

package database
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")
)