mirror of
https://github.com/safing/portmaster.git
synced 2026-05-20 20:40:36 +00:00
10 lines
182 B
Go
10 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")
|
|
)
|