mirror of
https://github.com/logos-storage/codex-factory.git
synced 2026-01-08 07:53:06 +00:00
12 lines
262 B
TypeScript
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,
|
|
})
|