mirror of
https://github.com/openziti/zrok.git
synced 2024-11-22 08:03:49 +01:00
16 lines
269 B
Go
16 lines
269 B
Go
package store
|
|
|
|
type LimitAction string
|
|
|
|
const (
|
|
LimitLimitAction LimitAction = "limit"
|
|
WarningLimitAction LimitAction = "warning"
|
|
)
|
|
|
|
type PermissionMode string
|
|
|
|
const (
|
|
OpenPermissionMode PermissionMode = "open"
|
|
ClosedPermissionMode PermissionMode = "closed"
|
|
)
|