Added new getting started guide

Thanks @MinnDevelopment for his awesome work on
the JDA guide that had no influence here at all.
This commit is contained in:
Christopher F
2017-03-11 15:32:14 -05:00
parent bea5e37db8
commit d111214bff
13 changed files with 326 additions and 42 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Threading.Tasks;
namespace MyBot
{
public class Program
{
public static void Main(string[] args)
=> new Program().MainAsync().GetAwaiter().GetResult();
public async Task MainAsync()
{
}
}
}