UNPKG

224 BJavaScriptView Raw
1const wxToQq = require('../cli/wx-qq/index');
2
3module.exports = function (program, cb = () => {}) {
4 program
5 .command('wx-qq')
6 .action(function (...params) {
7 cb(params, wxToQq);
8 });
9
10};
\No newline at end of file