Files

12 lines
203 B
Go
Raw Permalink Normal View History

2020-04-16 15:14:46 -07:00
package model
import (
"errors"
)
var (
ErrAlreadyExists = errors.New("object already exists")
ErrNotFound = errors.New("not found")
ErrQuotaExceeded = errors.New("query limit is exceeded")
)