mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-07 23:18:33 +00:00
9 lines
107 B
Go
9 lines
107 B
Go
![]() |
package model
|
||
|
|
||
|
type PolicyState int32
|
||
|
|
||
|
const (
|
||
|
PolicyStateActive PolicyState = iota
|
||
|
PolicyStateRemoved
|
||
|
)
|