From 53117ac67a439e0dc91ec7563ac2dcee57f7524b Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Mon, 8 Feb 2016 10:05:23 -0500 Subject: [PATCH] Fixed folders for static --- routes.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/routes.go b/routes.go index 8f60522..782f392 100644 --- a/routes.go +++ b/routes.go @@ -1,7 +1,6 @@ package main import ( - "fmt" "html/template" "io/ioutil" "net/http" @@ -59,7 +58,6 @@ func everythingElse(c *gin.Context) { func serveStaticFile(c *gin.Context, option string) { staticFile, err := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "static") + option) - fmt.Println(path.Join(RuntimeArgs.SourcePath, "static")) if err != nil { c.AbortWithStatus(404) } else {