lph-11/odin-http/comparisons/empty-ok-all/go/main.go

13 lines
194 B
Go
Raw Normal View History

2025-03-13 18:14:21 +13:00
package main
import (
"net/http"
)
func main() {
http.HandleFunc("/", HelloServer)
http.ListenAndServe(":8080", nil)
}
func HelloServer(w http.ResponseWriter, r *http.Request) {}