f0ckv1/src/trigger/test.js

12 lines
190 B
JavaScript
Raw Normal View History

2016-09-09 11:18:03 +00:00
module.exports = (bot, lib) => {
lib.trigger.add({
2016-09-08 15:42:38 +00:00
name: 'test',
call: /^\!test/,
level: 0,
active: 1,
func: (e) => {
2016-09-09 08:03:09 +00:00
2016-09-08 15:42:38 +00:00
},
desc: 'test'
});
};