feat: init update

This commit is contained in:
2026-01-02 17:04:48 +08:00
commit a92b4daaf4
5 changed files with 41 additions and 0 deletions

11
main.go Normal file
View File

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