[feat] Ctl framework

This commit is contained in:
acite
2025-10-05 03:00:26 +08:00
parent dcdd9d840e
commit af6dfbac8c
26 changed files with 578 additions and 79 deletions

13
abyssctl/Program.cs Normal file
View File

@@ -0,0 +1,13 @@

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