alist/internal/errs/user.go

11 lines
270 B
Go
Raw Normal View History

2022-06-25 14:05:02 +00:00
package errs
import "errors"
var (
2022-06-26 11:36:27 +00:00
EmptyUsername = errors.New("username is empty")
EmptyPassword = errors.New("password is empty")
WrongPassword = errors.New("password is incorrect")
DeleteAdminOrGuest = errors.New("cannot delete admin or guest")
2022-06-25 14:05:02 +00:00
)