Files
emissary/internal/datastore/error.go
William Petit ca4211daef
All checks were successful
arcad/emissary/pipeline/head This commit looks good
arcad/emissary/pipeline/pr-master This commit looks good
feat: resources segregation by tenant
2024-02-26 18:20:40 +01:00

11 lines
261 B
Go

package datastore
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrAlreadyExist = errors.New("already exist")
ErrUnexpectedRevision = errors.New("unexpected revision")
ErrAlreadyAttached = errors.New("already attached")
)