Skip to content

Instantly share code, notes, and snippets.

@tasdomas
Created March 5, 2018 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tasdomas/4fec80a0f9c76d6775a1e83574ebe6db to your computer and use it in GitHub Desktop.
Save tasdomas/4fec80a0f9c76d6775a1e83574ebe6db to your computer and use it in GitHub Desktop.
package main
import (
"log"
"net/http"
)
func main() {
http.Handle("/", http.HandlerFunc(auditHandler))
log.Fatal(http.ListenAndServe(":8080", nil))
}
func auditHandler(w http.ResponseWriter, r *http.Request) {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment