mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 08:16:39 +00:00
11 lines
184 B
Go
11 lines
184 B
Go
package oidc
|
|
|
|
import "time"
|
|
|
|
// State represents stored OIDC state information for CSRF protection
|
|
type State struct {
|
|
OriginalURL string
|
|
CreatedAt time.Time
|
|
RouteID string
|
|
}
|