package main import ( "net/http" "k8s-example/hello" ) func main() { http.HandleFunc("/hello", hello.HelloHandler) http.ListenAndServe(":8800", nil) }