twitch_bot/commands/repo.js

15 lines
329 B
JavaScript

const command = {
name: "repo",
desc: "get the git repo of bot",
restricted: false,
mod: false,
run: async (client, msg) => {
await client.say(
msg.channelName,
`${msg.displayName}, https://git.disroot.org/qwertyasdfgh/twitch_bot Author: juuuuuuuuuuuuunas`
);
},
};
module.exports = { command };