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