9 lines
172 B
Go
9 lines
172 B
Go
package dto
|
|
|
|
type HealthResponse struct {
|
|
Service string `json:"service"`
|
|
Status string `json:"status"`
|
|
Version string `json:"version"`
|
|
Time string `json:"time"`
|
|
}
|