mirror of
https://github.com/chaitin/MonkeyCode.git
synced 2026-02-02 23:03:57 +08:00
9 lines
146 B
Go
9 lines
146 B
Go
package consts
|
|
|
|
type TenantStatus string
|
|
|
|
const (
|
|
TenantStatusActive TenantStatus = "active"
|
|
TenantStatusInactive TenantStatus = "inactive"
|
|
)
|