fix(routes): unused param cfg

This commit is contained in:
Victor Lacasse-Beaudoin 2024-07-03 17:37:29 -04:00
parent 1f2ba0576a
commit d80c7675f9

View file

@ -15,6 +15,7 @@ import (
func addRoutes(e *echo.Echo, db *PostgresClient, cfg Config) error { func addRoutes(e *echo.Echo, db *PostgresClient, cfg Config) error {
_ = db _ = db
_ = cfg
apiPath := "/api/v7" apiPath := "/api/v7"
apiGroup := e.Group(apiPath) apiGroup := e.Group(apiPath)