mirror of
https://github.com/safing/portbase
synced 2025-09-01 01:59:48 +00:00
8 lines
119 B
Go
8 lines
119 B
Go
package storage
|
|
|
|
import "errors"
|
|
|
|
// Errors for storages.
|
|
var (
|
|
ErrNotFound = errors.New("storage entry not found")
|
|
)
|