Files
OpenList/internal/errs/user.go

10 lines
190 B
Go
Raw Normal View History

2022-06-25 22:05:02 +08:00
package errs
import "errors"
var (
EmptyUsername = errors.New("username is empty")
EmptyPassword = errors.New("password is empty")
WrongPassword = errors.New("password is incorrect")
)