From 05255aa13e215f31944ae62816c095b88e584ee0 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Mon, 13 Oct 2014 13:56:32 -0500 Subject: [PATCH] Fix path --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 24b319a..b23bbcc 100644 --- a/main.go +++ b/main.go @@ -88,7 +88,7 @@ func main() { router.GET("/explain", API_ExplainQuery) router.POST("/explain", API_ExplainQuery) router.GET("/history", API_History) - router.Static("/app", options.Static) + router.Static("/static", options.Static) fmt.Println("Starting server at 0.0.0.0:8080") router.Run(":8080")