From d80c7675f9ed40d1aaadd844fd69502ca6249fb9 Mon Sep 17 00:00:00 2001 From: Victor Lacasse-Beaudoin Date: Wed, 3 Jul 2024 17:37:29 -0400 Subject: [PATCH] fix(routes): unused param cfg --- routes.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routes.go b/routes.go index f7eb61c..ca7dcb2 100644 --- a/routes.go +++ b/routes.go @@ -15,6 +15,7 @@ import ( func addRoutes(e *echo.Echo, db *PostgresClient, cfg Config) error { _ = db + _ = cfg apiPath := "/api/v7" apiGroup := e.Group(apiPath)