Skip to content

Commit

Permalink
Fix: cli index.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Sambit003 authored and rajdip-b committed Sep 17, 2024
1 parent fbc0d34 commit 9bdbc85
Show file tree
Hide file tree
Showing 2 changed files with 19,194 additions and 11 deletions.
12 changes: 1 addition & 11 deletions apps/cli/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,10 @@
import { Command } from 'commander'
<<<<<<< HEAD
import type BaseCommand from './commands/base.command'
import InitCommand from './commands/init.command'
import RunCommand from './commands/run.command'
import ProfileCommand from './commands/profile.command'
import EnvironmentCommand from './commands/environment.command'
=======
import type BaseCommand from '@/commands/base.command'
import ProfileCommand from '@/commands/profile.command'
import InitCommand from '@/commands/init.command'
import RunCommand from '@/commands/run.command'
import ScanCommand from '@/commands/scan.command'
>>>>>>> c02e1d1 (feat(cli): add secret scan)

const program = new Command()

Expand All @@ -23,11 +16,8 @@ const COMMANDS: BaseCommand[] = [
new RunCommand(),
new InitCommand(),
new ProfileCommand(),
<<<<<<< HEAD
new EnvironmentCommand()
=======
new EnvironmentCommand(),
new ScanCommand()
>>>>>>> c02e1d1 (feat(cli): add secret scan)
]

COMMANDS.forEach((command) => {
Expand Down
Loading

0 comments on commit 9bdbc85

Please sign in to comment.