Rename folder

This commit is contained in:
Patrik Svensson
2020-08-03 15:34:33 +02:00
parent e5bf2bd498
commit c3286a4842
13 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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);
}
}
}