Created
February 17, 2020 04:47
-
-
Save grantseltzer/43154e656b5df1d4fe2f3d9a62cb3eeb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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