Files
mangezmieux/mangezmieux-backend/internal/health/model.go
2024-07-19 17:04:42 +02:00

9 lines
140 B
Go

package health
// Health struct
// @openapi:schema.
type Health struct {
Alive bool `json:"alive"`
Version string `json:"version"`
}