package storage import "errors" // Errors for storages var ( ErrNotFound = errors.New("not found") )