mirror of
https://github.com/OpenListTeam/OpenList.git
synced 2025-11-25 19:37:41 +08:00
10 lines
190 B
Go
10 lines
190 B
Go
|
|
package errs
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
EmptyUsername = errors.New("username is empty")
|
||
|
|
EmptyPassword = errors.New("password is empty")
|
||
|
|
WrongPassword = errors.New("password is incorrect")
|
||
|
|
)
|