From d90baca7888ad2fdb6ad57648e927a5dc8c708cf Mon Sep 17 00:00:00 2001 From: stephen mcquay Date: Fri, 12 Feb 2016 21:22:04 -0800 Subject: [PATCH] fixed gobindata panic --- routes.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/routes.go b/routes.go index 9852ecf..9e33f3b 100644 --- a/routes.go +++ b/routes.go @@ -31,9 +31,10 @@ func addRoutes(sm *http.ServeMux, a *Allowances, staticFiles string) { prefix["static"], http.FileServer( &assetfs.AssetFS{ - Asset: Asset, - AssetDir: AssetDir, - Prefix: "static", + Asset: Asset, + AssetDir: AssetDir, + AssetInfo: AssetInfo, + Prefix: "static", }, ), ),