Geen omschrijving

content.go 140B

    package handlers import ( "fmt" "net/http" ) func ContentHandler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Content") }