otelchi/examples/multi-services/utils/healthcheck.go

8 lines
136 B
Go
Raw Normal View History

2025-03-22 23:29:15 +13:00
package utils
import "net/http"
func HealthCheckHandler(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("It's working!"))
}