mirror of
https://github.com/jimeh/ozu.io.git
synced 2026-02-19 08:06:39 +00:00
7 lines
144 B
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")
|