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"` }