mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
12 lines
203 B
Go
12 lines
203 B
Go
|
package model
|
||
|
|
||
|
import (
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ErrAlreadyExists = errors.New("object already exists")
|
||
|
ErrNotFound = errors.New("not found")
|
||
|
ErrQuotaExceeded = errors.New("query limit is exceeded")
|
||
|
)
|