using async

This commit is contained in:
William Mantly 2019-08-31 10:14:19 -04:00
parent 64f9836fb2
commit 9d604f3b9c
Signed by: wmantly
GPG Key ID: E1EEC7650BA97160

View File

@ -3,10 +3,15 @@
//you must add the absolute path to hosts.js on line 4, or this file will NOT work
const hosts = require("./models/hosts.js")
const command = process.argv[2];
if (process.argv[2] == "--list"){
console.log(hosts.listAll())
}
(async function(command){
if (command == "--list"){
console.log(await hosts.listAll())
process.exit(0)
}
})(command)
/*
if process.argv[2] == "--info"