#!/usr/bin/env ts-node
import {
VERSION,
} from 'wechaty-qnamaker'
async function main () {
if (VERSION === '0.0.0') {
throw new Error('version should be set before publishing')
}
return 0
}
main()
.then(process.exit)
.catch(e => {
console.error(e)
process.exit(1)
})