Get the count of all the servers your bot is in.
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
let bot = await lib.discord.users['@0.2.0'].me.list();
let count = await lib.meiraba.utils['@1.0.1'].discord.bot_server_count({
bot_id: `${bot.id}`,
});
await lib.discord.channels['@0.3.0'].messages.create({
channel_id: `${context.params.event.channel_id}`,
content: `I am currently in ${count} servers.`,
message_reference: {
message_id: `${context.params.event.id}`,
},
});