package health import ( "log" "net/http" "meteor-compute-service/internal/config" ) // StartServer starts the HTTP server with health check endpoint func StartServer() { cfg := config.Load() http.HandleFunc("/health", HealthHandler) log.Printf("Server starting on port %s", cfg.Port) log.Fatal(http.ListenAndServe(":"+cfg.Port, nil)) }