mirror of
https://github.com/whoeevee/ivinject.git
synced 2026-01-08 23:25:03 +00:00
14 lines
325 B
C#
14 lines
325 B
C#
using System.CommandLine;
|
|
using ivinject.Features.Command;
|
|
|
|
namespace ivinject;
|
|
|
|
internal static class Program
|
|
{
|
|
private static readonly RootCommand RootCommand = new IviRootCommand();
|
|
|
|
private static async Task<int> Main(string[] args)
|
|
{
|
|
return await RootCommand.Parse(args).InvokeAsync();
|
|
}
|
|
} |