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