Canon/Canon.Generator/Program.cs

9 lines
203 B
C#
Raw Normal View History

using System.CommandLine;
using Canon.Generator.Extensions;
RootCommand rootCommand = new("Canon Compiler Source Generator");
rootCommand.AddGenerateCommand();
await rootCommand.InvokeAsync(args);