mirror of
https://github.com/safing/portbase
synced 2026-04-28 20:00:33 +00:00
8 lines
127 B
Go
8 lines
127 B
Go
package storage
|
|
|
|
import "errors"
|
|
|
|
// Errors for storages
|
|
var (
|
|
ErrNotFound = errors.New("storage entry could not be found")
|
|
)
|