mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-11 11:53:40 +00:00
10 lines
160 B
Go
10 lines
160 B
Go
|
package domain
|
||
|
|
||
|
type SAMLSessionState int32
|
||
|
|
||
|
const (
|
||
|
SAMLSessionStateUnspecified SAMLSessionState = iota
|
||
|
SAMLSessionStateActive
|
||
|
SAMLSessionStateTerminated
|
||
|
)
|