1
0
mirror of https://github.com/nsnail/spectre.console.git synced 2025-04-27 13:42:51 +08:00
2020-08-25 11:19:58 +02:00

20 lines
389 B
C#

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