import { readFileSync } from "fs"; const { version } = JSON.parse(readFileSync(new URL("../../package.json", import.meta.url))); import Command from "../../classes/command.js"; import { getServers } from "../../utils/misc.js"; class InfoCommand extends Command { static category = "general" async run() { // await this.acknowledge(); return { html: `

mrmBot Info/Credits

This instance is managed by ${process.env.OWNER.split(",")[0]}.
v${version}-mrm (${process.env.GIT_REV})
Bot by Essem and other contributors.
Fork by Murm.` }; } static description = "Gets some info and credits about me"; static aliases = ["botinfo", "credits"]; } export default InfoCommand;