alist/internal/store/error.go

8 lines
88 B
Go

package store
import "errors"
var (
ErrMetaNotFound = errors.New("meta not found")
)