lph-11/odin-http/comparisons/empty-ok-all/go/main.go
2025-03-13 18:14:21 +13:00

12 lines
194 B
Go

package main
import (
"net/http"
)
func main() {
http.HandleFunc("/", HelloServer)
http.ListenAndServe(":8080", nil)
}
func HelloServer(w http.ResponseWriter, r *http.Request) {}