mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:27:31 +00:00
10 lines
160 B
Go
10 lines
160 B
Go
package domain
|
|
|
|
type OIDCSessionState int32
|
|
|
|
const (
|
|
OIDCSessionStateUnspecified OIDCSessionState = iota
|
|
OIDCSessionStateActive
|
|
OIDCSessionStateTerminated
|
|
)
|