package main | |
import ( | |
"fmt" | |
"log" | |
"net/http" | |
) | |
//go:noinline | |
func handlerFunction(w http.ResponseWriter, r *http.Request) { | |
fmt.Fprintf(w, "Hi there from %s!", r.Host) | |
} | |
func main() { | |
http.HandleFunc("/", handlerFunction) | |
log.Fatal(http.ListenAndServe(":8080", nil)) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment