Files
DotNetSolutionTools/SolutionParityChecker.CLI/Program.cs
Matthew Parker fe9b8627c5 Refactor
2023-08-29 23:19:28 +10:00

14 lines
303 B
C#

using SolutionParityChecker.CLI.Commands;
using Spectre.Console.Cli;
var app = new CommandApp();
app.Configure(config =>
{
config.SetApplicationName("SolutionParityChecker");
config.ValidateExamples();
config.AddCommand<CompareCommand>("compare");
});
return await app.RunAsync(args);