13 lines
242 B
Go
13 lines
242 B
Go
package domain
|
|
|
|
type ErrorResponse struct {
|
|
HttpCode int `json:"code"`
|
|
Message string `json:"message"`
|
|
}
|
|
|
|
type HelloWhoResponse struct {
|
|
Success bool `json:"success"`
|
|
Error string `json:"error"`
|
|
Message string `json:"message"`
|
|
}
|