diff --git a/server.go b/server.go index 09cebfb..5b35034 100644 --- a/server.go +++ b/server.go @@ -43,10 +43,13 @@ func Execute() { e.GET("/v1", handleV1) + // Static Routes + + e.GET("/static/index.css", handleStaticCSSIndex) + // HTML Routes e.GET("/", handleIndex) - e.GET("/static/index.css", handleStaticCSSIndex) e.Logger.Fatal(e.Start(":8080")) }