Files
Xor290 919c807004
ci-api / test (push) Failing after 8m7s
ci-web / test (push) Failing after 5m5s
chore: build
2026-09-20 12:18:33 +02:00

10 lines
213 B
Go

package users
import "errors"
var (
ErrAdminLimitReached = errors.New("admin limit reached")
ErrNotFound = errors.New("user not found")
ErrUsernameTaken = errors.New("username already in use")
)