in apps/simple-frontend-otel/main.go [41:47]
func handler(w http.ResponseWriter, r *http.Request) {
// Set the header content-type and return hello world
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode("hello world")
}