mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +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")
|
|
)
|