15 lines
280 B
C#
15 lines
280 B
C#
using Microsoft.AspNetCore.Hosting;
|
|
using System;
|
|
using System.IO;
|
|
|
|
namespace Bot_Discord_CSharp
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Bot bot = new Bot();
|
|
bot.RunAsync().GetAwaiter().GetResult();
|
|
}
|
|
}
|
|
}
|