blob: e3cf2e21c18d64017790f428160effb9feaee5c3 (
plain) (
blame)
1
2
3
4
5
|
module.exports = ({ bot, knex, config, commands }) => {
commands.addInboxThreadCommand('id', [], async (msg, args, thread) => {
thread.postSystemMessage(thread.user_id);
});
};
|