mirror of
https://github.com/zitadel/zitadel.git
synced 2025-01-02 21:17:50 +00:00
10 lines
160 B
Go
10 lines
160 B
Go
|
package domain
|
||
|
|
||
|
type OIDCSessionState int32
|
||
|
|
||
|
const (
|
||
|
OIDCSessionStateUnspecified OIDCSessionState = iota
|
||
|
OIDCSessionStateActive
|
||
|
OIDCSessionStateTerminated
|
||
|
)
|