UNPKG

@juzi/wechaty

Version:

Wechaty is a RPA SDK for Chatbot Makers.

15 lines 579 B
/* eslint-disable sort-keys */ import { command, } from 'cmd-ts'; async function handler(_args) { console.info('this command can help you manage Wechaty Puppet Servivce (WPS).'); 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-service.ts'); } const service = command({ name: 'service', description: 'Manage Wechaty Puppet Service (WPS)', args: {}, handler, }); export { service }; //# sourceMappingURL=service.js.map