22 lines
541 B
TypeScript
22 lines
541 B
TypeScript
import { ShewenyClient } from "sheweny";
|
|
import { token } from "../config.json"
|
|
|
|
const client = new ShewenyClient({
|
|
intents: ["GUILDS", "GUILD_MESSAGES"],
|
|
admins: ["611468402263064577"],
|
|
// managers: {
|
|
// commands: {
|
|
// directory: "./commands",
|
|
// prefix: "!",
|
|
// loadAll: true,
|
|
// autoRegisterApplicationCommands: true,
|
|
// },
|
|
// events: {
|
|
// directory: "./events",
|
|
// loadAll: true,
|
|
// },
|
|
// },
|
|
});
|
|
|
|
client.login(token)
|