join command persistance and ping refactoring
parent
b3de3b160a
commit
af1728f71b
@ -0,0 +1,14 @@
|
||||
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 };
|
Loading…
Reference in New Issue