1
0
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-12-11 00:21:24 +01:00

feat(cli): add commands/search

This commit is contained in:
Divlo
2023-01-05 18:29:07 +01:00
parent 70564f174a
commit c8a7a6dcd4
3 changed files with 73 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ import { GenerateChallengeCommand } from './commands/generate/challenge.js'
import { GenerateSolutionCommand } from './commands/generate/solution.js'
import { RunSolutionCommand } from './commands/run/solution.js'
import { RunTestCommand } from './commands/run/test.js'
import { SearchCommand } from './commands/search/index.js'
export const cli = new Cli({
binaryLabel: 'programming-challenges',
@@ -16,3 +17,4 @@ cli.register(GenerateChallengeCommand)
cli.register(GenerateSolutionCommand)
cli.register(RunTestCommand)
cli.register(RunSolutionCommand)
cli.register(SearchCommand)