11 lines
151 B
Go
11 lines
151 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"k8s-example/hello"
|
|
)
|
|
|
|
func main() {
|
|
http.HandleFunc("/hello", hello.Handler)
|
|
http.ListenAndServe(":8800", nil)
|
|
} |