-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
37 lines (25 loc) · 763 Bytes
/
Program.cs
File metadata and controls
37 lines (25 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
using Discord;
using Discord.WebSocket;
using System;
using System.Threading.Tasks;
using System.IO;
using KillianBot.Services;
namespace KillianBot
{
public class Program
{
static void Main(string[] args)
=> new Program().StartAsync().GetAwaiter().GetResult();
private DiscordSocketClient _client;
private CommandHandler _handler;
public async Task StartAsync()
{
_client = new DiscordSocketClient();
KillianBotService.ConfigGet.GetConfig();
await _client.LoginAsync(TokenType.Bot, Config.config.BotToken);
await _client.StartAsync();
_handler = new CommandHandler(_client);
await Task.Delay(-1);
}
}
}