From a5b20519d4c6fada6d2562136e8c41a7d542d8c1 Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Wed, 19 Aug 2026 23:47:17 +0000 Subject: [PATCH] minor comment cleanup --- app/app.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index aabd32e..037293f 100644 --- a/app/app.go +++ b/app/app.go @@ -18,9 +18,11 @@ func Run() { common.Global = common.GetConfig(*configPath) - // setup static resources + // setup gin gin.SetMode(gin.ReleaseMode) router := gin.Default() + + // setup static resources m := common.InitMinify() ServeStatic(router, m) html := common.MinifyStatic(m, web.Templates)