cs-codex-dist-tests/Tools/BiblioTech/Program.cs

29 lines
777 B
C#
Raw Normal View History

2023-10-18 07:10:04 +00:00
using Discord;
using Discord.WebSocket;
public class Program
2023-10-18 06:57:59 +00:00
{
2023-10-18 07:10:04 +00:00
public static Task Main(string[] args) => new Program().MainAsync();
private DiscordSocketClient client;
public async Task MainAsync()
2023-10-18 06:57:59 +00:00
{
2023-10-18 07:10:04 +00:00
client = new DiscordSocketClient();
client.Log += Log;
2023-10-18 06:57:59 +00:00
2023-10-18 07:10:04 +00:00
// You can assign your bot token to a string, and pass that in to connect.
// This is, however, insecure, particularly if you plan to have your code hosted in a public repository.
var token = "token";
await client.LoginAsync(TokenType.Bot, token);
await client.StartAsync();
await Task.Delay(-1);
}
private Task Log(LogMessage msg)
{
Console.WriteLine(msg.ToString());
return Task.CompletedTask;
2023-10-18 06:57:59 +00:00
}
}