ramirez/src/modules/id.js

6 lines
181 B
JavaScript
Raw Normal View History

module.exports = (bot, knex, config, commands) => {
commands.addInboxThreadCommand('id', [], async (msg, args, thread) => {
thread.postSystemMessage(thread.user_id);
});
};