From c8445613d5097312752a35d021d0274f38da8180 Mon Sep 17 00:00:00 2001 From: Cheuk Tse Date: Mon, 2 Dec 2024 14:02:14 -0500 Subject: [PATCH] fix --- cli/module_generate/_templates/go/tmpl-main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/module_generate/_templates/go/tmpl-main.go b/cli/module_generate/_templates/go/tmpl-main.go index eea12f1192c..f53cf1a5f48 100644 --- a/cli/module_generate/_templates/go/tmpl-main.go +++ b/cli/module_generate/_templates/go/tmpl-main.go @@ -15,7 +15,7 @@ func main() { } func mainWithArgs(ctx context.Context, args []string, logger logging.Logger) error { - {{.ModuleCamel}}, err := module.NewModuleFromArgs(ctx, logger) + {{.ModuleCamel}}, err := module.NewModuleFromArgs(ctx) if err != nil { return err }