Files
go-example/main.go
2026-01-03 17:57:11 +08:00

11 lines
151 B
Go

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