File size: 163 Bytes
f6f0c71
 
 
 
 
 
 
1
2
3
4
5
6
7
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]`)
}