15 lines
345 B
C#
15 lines
345 B
C#
using Discord.API;
|
|
using Serilog;
|
|
|
|
Log.Logger=new LoggerConfiguration()
|
|
.WriteTo.Console(Serilog.Events.LogEventLevel.Verbose)
|
|
.MinimumLevel.Verbose()
|
|
.CreateLogger();
|
|
|
|
string api_key = File.ReadAllText("api_key.txt");
|
|
|
|
DiscordClient client = new DiscordClient(api_key, Intents.Guilds);
|
|
|
|
Console.ReadLine();
|
|
|
|
await client.Close(); |