Files
opencatd-open/team/consts/consts.go
2025-01-01 23:10:01 +08:00

18 lines
230 B
Go

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