blob: a343bcb32178151d90760e689d66e690a12b5ffb [file] [log] [blame]
pineafan63fc5e22022-08-04 22:04:10 +01001import { HaikuClient } from "jshaiku";
2import { Intents } from "discord.js";
3import config from "../config/main.json" assert {type: "json"};
pineafan6fb3e072022-05-20 19:27:23 +01004
5const client = new HaikuClient({
pineafan63fc5e22022-08-04 22:04:10 +01006 intents: new Intents(32767).bitfield // This is a way of specifying all intents w/o having to type them out
pineafan6fb3e072022-05-20 19:27:23 +01007}, config);
8
9export default client;