dsharp-bot/Bot_Discord_CSharp/Program.cs
2020-12-08 03:29:16 +01:00

13 lines
227 B
C#

using System;
namespace Bot_Discord_CSharp
{
class Program
{
static void Main(string[] args)
{
Bot bot = new Bot();
bot.RunAsync().GetAwaiter().GetResult();
}
}
}