mirror of
https://github.com/safing/portmaster
synced 2025-09-10 15:08:22 +00:00
9 lines
182 B
Go
9 lines
182 B
Go
package storage
|
|
|
|
import "errors"
|
|
|
|
// Errors for storages.
|
|
var (
|
|
ErrNotFound = errors.New("storage entry not found")
|
|
ErrRecordMalformed = errors.New("record is malformed")
|
|
)
|