File size: 270 Bytes
7107f0b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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")
)