feat: app

This commit is contained in:
2025-03-27 11:09:56 +01:00
parent d02d210aff
commit 60942903ec
6 changed files with 319 additions and 0 deletions

6
service-model.go Normal file
View File

@@ -0,0 +1,6 @@
package main;
type Service struct {
Name string `json:"name"`;
Healthy bool `json:"healthy"`;
}