bouncer/internal/store/error.go

9 lines
130 B
Go
Raw Permalink Normal View History

2023-04-24 20:52:12 +02:00
package store
import "errors"
var (
ErrAlreadyExist = errors.New("already exist")
ErrNotFound = errors.New("not found")
)