mirror of
https://github.com/weloe/token-go.git
synced 2025-10-05 23:46:52 +08:00
12 lines
205 B
Go
12 lines
205 B
Go
package errors
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
BeReplaced = errors.New("this account is replaced")
|
|
BeKicked = errors.New("this account is kicked out")
|
|
BeBanned = errors.New("this account is banned")
|
|
)
|