实现API功能并编写日志过滤方法

Signed-off-by: Eicy <im@crash.work>
This commit is contained in:
2024-12-21 01:05:49 +08:00
parent 2537d11f53
commit 3a41f098fe
7 changed files with 87 additions and 100 deletions

View File

@@ -1,4 +1,5 @@
using BotService = Shrink.Login.BotService;
using Shrink.Config;
using Shrink.Service;
namespace Shrink;
@@ -6,6 +7,8 @@ public static class Program
{
public static async Task Main()
{
await Configuration.Instance.Init();
await BotService.Instance.Login();
await BotPassiveMsgHandler.Instance.Init();
}
}