Files
ozu.io/storage/errors.go

7 lines
144 B
Go

package storage
import "errors"
// ErrNotFound is the default error message when data is not found.
var ErrNotFound = errors.New("not found")