feat: send test command to the bot

This commit is contained in:
k0t9i 2023-01-31 00:31:57 +04:00
parent 57d6a61791
commit a8734a4ca0

View File

@ -41,10 +41,12 @@ namespace Client
Debug.WriteLine(dllName + " loaded\n");
transport.Message += OnMessage;
await transport.ConnectAsync();
await transport.SendAsync("invalidate");
while (true)
{
await transport.ConnectAsync();
await transport.StartReceiveAsync();
await transport.ConnectAsync();
}
}