9 lines
139 B
Go
9 lines
139 B
Go
package health
|
|
|
|
// Health struct
|
|
// @openapi:schema
|
|
type Health struct {
|
|
Alive bool `json:"alive"`
|
|
Version string `json:"version"`
|
|
}
|