mirror of
https://github.com/Myxelium/Lunaris2.0.git
synced 2026-04-09 06:09:39 +00:00
17 lines
384 B
C#
17 lines
384 B
C#
using Discord;
|
|
using Discord.WebSocket;
|
|
|
|
namespace Lunaris2.Helpers
|
|
{
|
|
public static class DiscordSocketClientSetup
|
|
{
|
|
public static DiscordSocketClient Setup()
|
|
{
|
|
var config = new DiscordSocketConfig
|
|
{
|
|
GatewayIntents = GatewayIntents.All
|
|
};
|
|
return new DiscordSocketClient(config);
|
|
}
|
|
}
|
|
} |