2024-06-20 22:19:03 -04:00

12 lines
330 B
C#

// See https://aka.ms/new-console-template for more information
using CliFx;
public static class Program
{
public static async Task<int> Main() =>
await new CliApplicationBuilder()
.AddCommandsFromThisAssembly()
.SetExecutableName("ReCodeIt")
.Build()
.RunAsync();
}