@juzi/wechaty
Version:
Wechaty is a RPA SDK for Chatbot Makers.
15 lines • 585 B
JavaScript
/* eslint-disable sort-keys */
import { command, } from 'cmd-ts';
async function handler(_args) {
console.info('this command can help you manage Wechaty Puppet Provider (WPP).');
console.info('Not implemented yet, please stay tuned and contribute is welcome!');
console.info('GitHub repo(source code): https://github.com/wechaty/wechaty/blob/main/src/cli/puppet-provider.ts');
}
const provider = command({
name: 'provider',
description: 'Manage Wechaty Puppet Provider (WPP)',
args: {},
handler,
});
export { provider };
//# sourceMappingURL=provider.js.map