wechaty-puppet-padplus
Version:
Puppet Padplus for Wechaty
26 lines (21 loc) • 551 B
text/typescript
// tslint:disable:arrow-parens
// tslint:disable:max-line-length
// tslint:disable:member-ordering
// tslint:disable:no-shadowed-variable
// tslint:disable:unified-signatures
// tslint:disable:no-console
import {
PuppetPadplus,
} from 'wechaty-puppet-padplus'
async function main () {
const puppet = new PuppetPadplus({ token: 'test-token' })
console.log(`Puppet v${puppet.version()} smoke testing passed.`)
return 0
}
main()
.then(process.exit)
.catch(e => {
console.error(e)
process.exit(1)
})