Files
go-example/hello/hello.go
2026-01-02 17:04:48 +08:00

9 lines
134 B
Go

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