From d7d3732fabdd109cf25090aa920abcf73c083bbb Mon Sep 17 00:00:00 2001 From: Alpha Date: Thu, 31 Jan 2019 19:17:59 +0100 Subject: [PATCH] Fixing Port issue --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 983a777..b484807 100644 --- a/main.go +++ b/main.go @@ -62,5 +62,5 @@ func main() { http.StripPrefix("/static", http.FileServer(http.Dir("./static"))).ServeHTTP(w, r) }) - log.Fatal("Handler: ", http.ListenAndServe(":8080", router)) + log.Fatal("Handler: ", http.ListenAndServe(config.ServerWeb.Port, router)) }