Add http server

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-01-20 11:14:17 +01:00
parent 8d86eacf87
commit 74be91f41c
6 changed files with 188 additions and 25 deletions

7
pkg/probod/api_config.go Normal file
View File

@@ -0,0 +1,7 @@
package probod
type (
apiConfig struct {
Addr string `json:"addr"`
}
)