1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/cli/cli.ts

17 lines
558 B
TypeScript
Raw Normal View History

import { Builtins, Cli } from 'clipanion'
import { GenerateChallengeCommand } from './commands/generate/challenge'
import { GenerateSolutionCommand } from './commands/generate/solution'
import { RunTestCommand } from './commands/run/test'
export const cli = new Cli({
binaryLabel: 'programming-challenges',
binaryName: 'programming-challenges',
binaryVersion: '1.0.0'
})
cli.register(Builtins.HelpCommand)
cli.register(Builtins.VersionCommand)
cli.register(GenerateChallengeCommand)
cli.register(GenerateSolutionCommand)
cli.register(RunTestCommand)