mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
8 lines
147 B
TypeScript
8 lines
147 B
TypeScript
import { createCli } from './cli.js'
|
|
|
|
const program = createCli()
|
|
if (process.argv.length <= 2) {
|
|
process.argv.push('onboard')
|
|
}
|
|
program.parse()
|