feat: add utility function to log caller information and clean up handler

This commit is contained in:
2026-01-10 17:19:14 +08:00
parent 44d1c763e3
commit ecacad737a
2 changed files with 23 additions and 10 deletions

View File

@@ -1,19 +1,11 @@
package hello
import (
"fmt"
"k8s-example/cmn/utils"
"net/http"
)
func Handler(w http.ResponseWriter, _ *http.Request) {
utils.Fnc()
_, _ = w.Write([]byte("Hello, World!"))
if true {
if true {
if true {
fmt.Println("Deeply nested condition")
}
}
}
}