Files
Abyss/abyssctl/Program.cs
2025-10-05 03:00:26 +08:00

13 lines
184 B
C#

namespace abyssctl;
static class Program
{
static async Task<int> Main(string[] args)
{
var app = new App.App();
return await app.RunAsync(args);
}
}