skribd / run.js
rkwyu
First commit
f6f0c71
raw
history blame
163 Bytes
import { app } from './src/App.js'
if (process.argv.length == 3) {
await app.execute(process.argv[2])
} else {
console.error(`Usage: node run.js [URL]`)
}