using Generator.Commands; using Spectre.Console.Cli; namespace Generator { public static class Program { public static int Main(string[] args) { var app = new CommandApp(); app.Configure(config => { config.AddCommand("colors"); config.AddCommand("emoji"); config.AddCommand("spinners"); config.AddCommand("samples"); }); return app.Run(args); } } }