Update events.cs (#2505)

Fixed compiler error caused by missing semicolon
This commit is contained in:
Payton
2022-11-07 10:26:18 -06:00
committed by GitHub
parent 01ae904fe1
commit ea039b848c

View File

@@ -22,7 +22,7 @@ public class Program
{ {
Console.WriteLine("Bot is connected!"); Console.WriteLine("Bot is connected!");
return Task.CompletedTask; return Task.CompletedTask;
} };
await Task.Delay(-1); await Task.Delay(-1);
} }