From 0a4030c389f6db756d4a41b8655ad1974f977375 Mon Sep 17 00:00:00 2001 From: Eden Kirin Date: Tue, 4 Nov 2025 09:58:08 +0100 Subject: [PATCH] Tweak output --- cmd/entity-maker/main.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/entity-maker/main.go b/cmd/entity-maker/main.go index c2823f1..dcc84a0 100644 --- a/cmd/entity-maker/main.go +++ b/cmd/entity-maker/main.go @@ -165,7 +165,6 @@ func run() error { // Introspect table prompt.PrintHeader("Introspecting Table") - tableInfo, err := dbClient.IntrospectTable(cfg.DBTable) if err != nil { return fmt.Errorf("failed to introspect table: %w", err) @@ -225,7 +224,6 @@ func run() error { // Print summary prompt.PrintHeader("Summary") - fmt.Printf("\n") fmt.Printf(" Entity name: %s\n", color.GreenString(ctx.EntityName)) fmt.Printf(" Module name: %s\n", color.GreenString(ctx.ModuleName)) fmt.Printf(" Output dir: %s\n", color.GreenString(moduleDir))