Mr.L
feat: add full alist source code for Docker build
7107f0b
raw
history blame contribute delete
270 Bytes
package errs
import "errors"
var (
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")
)