2020-06-30 10:41:39 +01:00
|
|
|
const name = process.env.BOT_NAME
|
|
|
|
const channel = process.env.CHANNEL
|
|
|
|
|
2020-06-29 21:39:15 +01:00
|
|
|
const commands = [
|
|
|
|
{
|
|
|
|
"NAME": "/help",
|
|
|
|
"TEXT": [
|
2020-06-29 22:43:41 +01:00
|
|
|
"please PM me @" + process.env.BOT_USERNAME + " and i'll try to help.",
|
2020-06-29 21:39:15 +01:00
|
|
|
]
|
2020-06-29 22:43:41 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"NAME": "/sub_status",
|
|
|
|
"TEXT": []
|
2020-06-29 21:39:15 +01:00
|
|
|
}
|
|
|
|
]
|
|
|
|
|
2020-06-30 13:34:58 +01:00
|
|
|
module.exports = commands;
|