mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
10 lines
160 B
Go
10 lines
160 B
Go
|
package domain
|
||
|
|
||
|
type OIDCSessionState int32
|
||
|
|
||
|
const (
|
||
|
OIDCSessionStateUnspecified OIDCSessionState = iota
|
||
|
OIDCSessionStateActive
|
||
|
OIDCSessionStateTerminated
|
||
|
)
|