dsharp-bot/Bot_Discord_CSharp/Program.cs
Álvaro Gómez Cuenca 5e0939db3d Docker sync finished
2020-12-09 20:34:49 +01:00

11 lines
212 B
C#

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