10 lines
241 B
C#
10 lines
241 B
C#
using System.CommandLine;
|
|
using Canon.Generator.Extensions;
|
|
|
|
RootCommand rootCommand = new("Canon Compiler Source Generator");
|
|
|
|
rootCommand.AddGrammarCommand();
|
|
rootCommand.AddSyntaxVisitorCommand();
|
|
|
|
await rootCommand.InvokeAsync(args);
|