20 lines
411 B
Go
20 lines
411 B
Go
package domain
|
|
|
|
type LoginResponse struct {
|
|
Success bool `json:"success"`
|
|
Token string `json:"token"`
|
|
Type string `json:"type"`
|
|
RefreshToken string `json:"refreshToken"`
|
|
}
|
|
|
|
type ErrorResponse struct {
|
|
Success bool `json:"success"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type HelloWhoResponse struct {
|
|
Success bool `json:"success"`
|
|
Error string `json:"error"`
|
|
Message string `json:"message"`
|
|
}
|