cmds func fin v1

This commit is contained in:
Jay
2018-07-02 23:02:48 +08:00
parent d6f1b81796
commit d7c64b3c65
4 changed files with 33 additions and 5 deletions
+6 -1
View File
@@ -375,10 +375,15 @@ const delTwitch = async (txt = '', source = {}, db) => {
}
}
const hello = async () => {
return 'Hello World'
}
module.exports = {
addgroup: run.bind(null, addGroup),
addpage: run.bind(null, addPage),
delpage: run.bind(null, delPage),
addtwitch: run.bind(null, addTwitch),
deltwitch: run.bind(null, delTwitch)
deltwitch: run.bind(null, delTwitch),
hello: run.bind(null, hello)
}