remove async

This commit is contained in:
cupcakearmy 2020-05-17 09:35:18 +02:00
parent 22f5f61ee0
commit 82f6942ff1
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 3 additions and 3 deletions

View File

@ -34,11 +34,11 @@ export let config: Config
async function main() {
config = await init()
config = init()
// For dev
// return await handlers['check']([], { ...flags, all: true })
if (commands.length < 1 || commands[0] === 'help') return help()
const command: string = commands[0]