Change endpoint URL, as we might want to run some stats pages

This commit is contained in:
Audrius Butkevicius 2015-10-17 00:05:44 +01:00
parent a91a836224
commit c885903ff2

View File

@ -149,7 +149,7 @@ func main() {
}
handler := http.NewServeMux()
handler.HandleFunc("/", handleRequest)
handler.HandleFunc("/endpoint", handleRequest)
srv := http.Server{
Handler: handler,