print a pretty table with correct country coder

This commit is contained in:
2025-11-18 16:07:41 +00:00
parent 05a981b3a0
commit d097b01288
13 changed files with 318 additions and 160 deletions

View File

@@ -51,7 +51,7 @@ func run(ctx context.Context, platform string) error {
reader := factory()
writer := internal.NewStdOutLogger()
writer := internal.NewTableWriter(os.Stdout)
eg.Go(func() error {
return internal.BuildReport(ctx, reader, writer)
@@ -62,7 +62,7 @@ func run(ctx context.Context, platform string) error {
return err
}
slog.Info("Finish processing statement")
writer.Render()
return nil
}