Files
zcli-playground/godummy/main.go
T
2026-02-08 10:25:39 +01:00

15 lines
235 B
Go

package main
import (
"fmt"
"net/http"
)
func main() {
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
_, _ = fmt.Fprintln(w, "OK")
})
_ = http.ListenAndServe(":8080", nil)
}