Agregar archivos de proyecto.

This commit is contained in:
Álvaro Gómez Cuenca 2020-12-08 03:29:16 +01:00
commit 2f3fbad29e
7 changed files with 353 additions and 0 deletions

View file

@ -0,0 +1,13 @@
using System;
namespace Bot_Discord_CSharp
{
class Program
{
static void Main(string[] args)
{
Bot bot = new Bot();
bot.RunAsync().GetAwaiter().GetResult();
}
}
}