Browse Source

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

Audrius Butkevicius 10 years ago
parent
commit
c885903ff2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmd/strelaypoolsrv/main.go

+ 1 - 1
cmd/strelaypoolsrv/main.go

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