package errinternal import "errors" var ( ErrInvalidKey = errors.New("storage: invalid key") ErrNotFound = errors.New("storage: not found") )