mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
20 lines
389 B
C#
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);
|
|
}
|
|
}
|
|
}
|