aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/cli/src/index.ts')
-rw-r--r--apps/cli/src/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts
index c698169f..df7d9512 100644
--- a/apps/cli/src/index.ts
+++ b/apps/cli/src/index.ts
@@ -1,4 +1,5 @@
import { bookmarkCmd } from "@/commands/bookmarks";
+import { dumpCmd } from "@/commands/dump";
import { listsCmd } from "@/commands/lists";
import { migrateCmd } from "@/commands/migrate";
import { tagsCmd } from "@/commands/tags";
@@ -36,6 +37,7 @@ program.addCommand(tagsCmd);
program.addCommand(whoamiCmd);
program.addCommand(migrateCmd);
program.addCommand(wipeCmd);
+program.addCommand(dumpCmd);
setGlobalOptions(program.opts());