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