Files
netbird/proxy/internal/auth/oidc/state.go
2026-01-15 14:54:33 +01:00

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
}