7 lines
135 B
Go
7 lines
135 B
Go
|
package responses
|
||
|
|
||
|
// GetHealth is the response type for handlers.GetHealth
|
||
|
type GetHealth struct {
|
||
|
Message string `json:"message"`
|
||
|
}
|