9 lines
166 B
TypeScript
9 lines
166 B
TypeScript
import { Client, GatewayIntentBits } from "discord.js";
|
|
|
|
const client = new Client({
|
|
intents: [
|
|
GatewayIntentBits.Guilds
|
|
]
|
|
});
|
|
|
|
export default client; |