mirror of
https://github.com/datarhei/core.git
synced 2025-09-27 04:16:25 +08:00
12 lines
309 B
Go
12 lines
309 B
Go
package api
|
|
|
|
// JWT is the JWT token and its expiry date
|
|
type JWT struct {
|
|
AccessToken string `json:"access_token" jsonschema:"minLength=1"`
|
|
RefreshToken string `json:"refresh_token" jsonschema:"minLength=1"`
|
|
}
|
|
|
|
type JWTRefresh struct {
|
|
AccessToken string `json:"access_token" jsonschema:"minLength=1"`
|
|
}
|