mirror of
https://github.com/nais/wonderwall.git
synced 2026-05-21 15:52:54 +00:00
9 lines
192 B
Go
9 lines
192 B
Go
package cookie
|
|
|
|
type Login struct {
|
|
State string `json:"state"`
|
|
Nonce string `json:"nonce"`
|
|
CodeVerifier string `json:"code_verifier"`
|
|
Referer string `json:"referer"`
|
|
}
|