UNPKG

@juzi/wechaty

Version:

Wechaty is a RPA SDK for Chatbot Makers.

21 lines (17 loc) 559 B
/* eslint-disable sort-keys */ import { command, } from 'cmd-ts' async function handler (_args: any) { 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 }