linstrom/storage/errors.go
2024-09-12 16:57:53 +02:00

11 lines
197 B
Go

package storage
import "errors"
type ErrNotImplemented struct{}
func (n ErrNotImplemented) Error() string {
return "Not implemented yet"
}
var ErrEntryNotFound = errors.New("entry not found")