Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alist-org
GitHub Repository: alist-org/alist
Path: blob/main/internal/errs/user.go
1560 views
1
package errs
2
3
import "errors"
4
5
var (
6
EmptyUsername = errors.New("username is empty")
7
EmptyPassword = errors.New("password is empty")
8
WrongPassword = errors.New("password is incorrect")
9
DeleteAdminOrGuest = errors.New("cannot delete admin or guest")
10
)
11
12