module.exports = (bot, lib) => {
lib.trigger.add({
name: 'test',
call: /^\!test/,
level: 0,
active: 1,
func: (e) => {
e.reply('test the best');
},
desc: 'test'
});
};