13 lines
227 B
C#
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();
|
|
}
|
|
}
|
|
}
|