Tweak output

This commit is contained in:
Eden Kirin
2025-11-04 09:58:08 +01:00
parent 4e4827d640
commit 0a4030c389

View File

@ -165,7 +165,6 @@ func run() error {
// Introspect table // Introspect table
prompt.PrintHeader("Introspecting Table") prompt.PrintHeader("Introspecting Table")
tableInfo, err := dbClient.IntrospectTable(cfg.DBTable) tableInfo, err := dbClient.IntrospectTable(cfg.DBTable)
if err != nil { if err != nil {
return fmt.Errorf("failed to introspect table: %w", err) return fmt.Errorf("failed to introspect table: %w", err)
@ -225,7 +224,6 @@ func run() error {
// Print summary // Print summary
prompt.PrintHeader("Summary") prompt.PrintHeader("Summary")
fmt.Printf("\n")
fmt.Printf(" Entity name: %s\n", color.GreenString(ctx.EntityName)) fmt.Printf(" Entity name: %s\n", color.GreenString(ctx.EntityName))
fmt.Printf(" Module name: %s\n", color.GreenString(ctx.ModuleName)) fmt.Printf(" Module name: %s\n", color.GreenString(ctx.ModuleName))
fmt.Printf(" Output dir: %s\n", color.GreenString(moduleDir)) fmt.Printf(" Output dir: %s\n", color.GreenString(moduleDir))