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

9
hello/hello.go Normal file
View File

@@ -0,0 +1,9 @@
package hello
import (
"net/http"
)
func HelloHandler(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello, World!"))
}