18 lines
230 B
Go
18 lines
230 B
Go
package consts
|
|
|
|
const (
|
|
RoleGuest = iota * 10
|
|
RoleUser
|
|
RoleAdmin
|
|
RoleSuperAdmin
|
|
)
|
|
|
|
const (
|
|
StatusEnabled = iota
|
|
StatusDisabled
|
|
StatusExpired // 过期
|
|
StatusExhausted // 耗尽
|
|
StatusDeleted
|
|
)
|
|
const UnlimitedQuota = -1
|