fix the fucky wucky

This commit is contained in:
2025-02-28 21:13:36 +00:00
parent dbe9e1a5a7
commit 3690935295
7 changed files with 43 additions and 17 deletions

View File

@@ -0,0 +1,14 @@
package main
import (
"net/http"
"os"
)
func main() {
resp, err := http.Get("http://localhost:3000/health")
if err != nil || resp.StatusCode != 200 {
os.Exit(1)
}
os.Exit(0)
}