Created
March 5, 2018 13:23
-
-
Save tasdomas/4fec80a0f9c76d6775a1e83574ebe6db to your computer and use it in GitHub Desktop.
This file contains hidden or 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 ( | |
"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