Skip to content

Instantly share code, notes, and snippets.

@grantseltzer
Created February 17, 2020 04:47
Show Gist options
  • Save grantseltzer/43154e656b5df1d4fe2f3d9a62cb3eeb to your computer and use it in GitHub Desktop.
Save grantseltzer/43154e656b5df1d4fe2f3d9a62cb3eeb to your computer and use it in GitHub Desktop.
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