mirror of
https://github.com/dnote/dnote
synced 2026-03-14 22:45:50 +01:00
12 lines
209 B
Go
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")
|
|
)
|