blob: 3f4a8a1816a693f63a16275d864e643bf05d0d2b [file] [log] [blame]
pineafan6fb3e072022-05-20 19:27:23 +01001import { HaikuClient } from 'jshaiku';
2import { Intents } from 'discord.js';
3import config from '../config/main.json' assert {type: 'json'};
4
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
9export default client;