mirror of
https://github.com/weloe/token-go.git
synced 2025-10-04 15:12:47 +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")
|
|
)
|