mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
#!/usr/bin/env node
|
|
import { Cli } from 'clipanion'
|
|
|
|
import { cli } from './cli.js'
|
|
|
|
const [, , ...arguments_] = process.argv
|
|
|
|
await cli.runExit(arguments_, Cli.defaultContext)
|