this repo has no description
1package main 2 3type OauthRequest struct { 4 ID uint 5 AuthserverIss string 6 State string `gorm:"index"` 7 Did string `gorm:"index"` 8 PdsUrl string 9 PkceVerifier string 10 DpopAuthserverNonce string 11 DpopPrivateJwk string 12} 13 14type OauthSession struct { 15 ID uint 16 Did string `gorm:"uniqueIndex"` 17 PdsUrl string 18 AuthserverIss string 19 AccessToken string 20 RefreshToken string 21 DpopPdsNonce string 22 DpopAuthserverNonce string 23 DpopPrivateJwk string 24}