Files
healthr-go/service-model.go
2025-03-27 11:09:56 +01:00

7 lines
105 B
Go

package main;
type Service struct {
Name string `json:"name"`;
Healthy bool `json:"healthy"`;
}