Skip to content

Instantly share code, notes, and snippets.

@grantseltzer
Created February 17, 2020 04:47
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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