mirror of
https://github.com/PrivateCaptcha/PrivateCaptcha.git
synced 2026-05-08 14:00:47 -05:00
15 lines
232 B
Go
15 lines
232 B
Go
package session
|
|
|
|
import "github.com/PrivateCaptcha/PrivateCaptcha/pkg/common"
|
|
|
|
const (
|
|
KeyLoginStep common.SessionKey = iota
|
|
KeyUserID
|
|
KeyUserEmail
|
|
KeyTwoFactorCode
|
|
KeyUserName
|
|
KeyPersistent
|
|
KeyNotificationID
|
|
KeyReturnURL
|
|
)
|