9 lines
166 B
TypeScript
Raw Normal View History

2022-11-23 13:23:25 +01:00
import { Client, GatewayIntentBits } from "discord.js";
const client = new Client({
intents: [
GatewayIntentBits.Guilds
]
});
2022-11-24 12:12:50 +01:00
export default client;