summaryrefslogtreecommitdiff
path: root/packages/cli/src/services/CommandService.ts
diff options
context:
space:
mode:
authorAbhi <[email protected]>2025-07-17 19:23:17 -0400
committerGitHub <[email protected]>2025-07-17 23:23:17 +0000
commit5df6c9fb660f932d54d6b5d1080cb86c95a824cf (patch)
tree82ef85725cba809278e2f2eef7395ea7458e84ff /packages/cli/src/services/CommandService.ts
parentf0dc9690b7903532099a5a2c4d98e02b3d2382bf (diff)
migrate restore command (#4388)
Diffstat (limited to 'packages/cli/src/services/CommandService.ts')
-rw-r--r--packages/cli/src/services/CommandService.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/services/CommandService.ts b/packages/cli/src/services/CommandService.ts
index 773f5b31..611b0a7b 100644
--- a/packages/cli/src/services/CommandService.ts
+++ b/packages/cli/src/services/CommandService.ts
@@ -24,6 +24,7 @@ import { compressCommand } from '../ui/commands/compressCommand.js';
import { ideCommand } from '../ui/commands/ideCommand.js';
import { bugCommand } from '../ui/commands/bugCommand.js';
import { quitCommand } from '../ui/commands/quitCommand.js';
+import { restoreCommand } from '../ui/commands/restoreCommand.js';
const loadBuiltInCommands = async (
config: Config | null,
@@ -44,6 +45,7 @@ const loadBuiltInCommands = async (
memoryCommand,
privacyCommand,
quitCommand,
+ restoreCommand(config),
statsCommand,
themeCommand,
toolsCommand,