Chris Grimmett 0fd947c78f
Some checks failed
ci / build (push) Failing after 26s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 6s
add gitea ci
2024-03-28 23:28:02 -08:00

13 lines
232 B
Go

package main
import "net/http"
func main() {
http.HandleFunc("/", hellowordhandler)
http.ListenAndServe(":9000", nil)
}
func hellowordhandler(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Hello World"))
}