29 lines
458 B
Go
29 lines
458 B
Go
|
package router
|
||
|
|
||
|
import (
|
||
|
"github.com/dgrijalva/jwt-go"
|
||
|
)
|
||
|
|
||
|
type AccessTokenClaims struct {
|
||
|
UserID string `json:"userId"`
|
||
|
jwt.StandardClaims
|
||
|
}
|
||
|
|
||
|
type RefreshTokenClaims struct {
|
||
|
UserID string `json:"userId"`
|
||
|
jwt.StandardClaims
|
||
|
}
|
||
|
|
||
|
type LoginRequestData struct {
|
||
|
Username string
|
||
|
Password string
|
||
|
}
|
||
|
|
||
|
type LoginResponseData struct {
|
||
|
AccessToken string `json:"accessToken"`
|
||
|
}
|
||
|
|
||
|
type RefreshTokenResponseData struct {
|
||
|
AccessToken string `json:"accessToken"`
|
||
|
}
|