blob: 9a361f640cc23d0adcdae2ef3556f03c9ba1a18d [file] [log] [blame]
Skyler Turner66ac7942022-02-24 01:59:22 +00001import { HaikuClient } from 'jshaiku';
2import { Intents } from 'discord.js';
pineafandd1155e2022-02-26 22:06:12 +00003import config from './config/main.json' assert {type: 'json'};
Skyler Turner66ac7942022-02-24 01:59:22 +00004
5const client = new HaikuClient({
6 intents: new Intents(32767).bitfield, // This is a way of specifying all intents w/o having to type them out
7}, config);
8
9await client.registerCommandsIn("./commands");
10
11await client.login();