codex-factory/src/index.ts
2022-04-29 15:51:09 +02:00

12 lines
262 B
TypeScript

import { cli } from 'furious-commander'
import { application } from './application'
import { optionParameters, rootCommandClasses } from './config'
import { printer } from './printer'
cli({
rootCommandClasses,
optionParameters,
printer,
application,
})