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)) }