codeword/internal/models/auth.go

12 lines
237 B
Go
Raw Normal View History

2024-01-04 14:57:30 +00:00
package models
type AuthRequestBody struct {
UserID string `json:"userId"`
Signature string `json:"signature"`
}
type RefreshResponse struct {
AccessToken string `json:"accessToken"`
RefreshToken string `json:"refreshToken"`
}