Files
auth-jwt/token_pair.go
T

9 lines
203 B
Go
Raw Normal View History

package authjwt
// TokenPair holds an access token and a refresh token.
type TokenPair struct {
AccessToken string
RefreshToken string
ExpiresIn int64 // seconds until the access token expires
}