blob: 3f4a8a1816a693f63a16275d864e643bf05d0d2b [file] [log] [blame]
import { HaikuClient } from 'jshaiku';
import { Intents } from 'discord.js';
import config from '../config/main.json' assert {type: 'json'};
const client = new HaikuClient({
intents: new Intents(32767).bitfield, // This is a way of specifying all intents w/o having to type them out
}, config);
export default client;