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