mirror of
https://gitee.com/shikong-sk/gofiber-study
synced 2025-05-10 20:18:04 +08:00
9 lines
219 B
Go
9 lines
219 B
Go
package auth
|
|
|
|
type LoginVO struct {
|
|
// token 用户令牌
|
|
Token string `json:"token" example:"0123456789ABCDEFG"`
|
|
// refreshToken 刷新令牌
|
|
RefreshToken string `json:"refreshToken" example:"0123456789ABCDEFG"`
|
|
}
|