package hello import ( "k8s-example/cmn/utils" "net/http" ) func Handler(w http.ResponseWriter, _ *http.Request) { utils.Fnc() _, _ = w.Write([]byte("Hello, World!")) }