diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-09-14 13:14:41 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-09-14 13:14:41 +0000 |
| commit | b9a8ca294848f127eb5f4c9b0837a7218ace8f7e (patch) | |
| tree | 86cbeb093fbc7c4b181559e29e5fd7771990f1e1 /apps/cli/src/index.ts | |
| parent | bc0e7461503c6b6d9ef7bec3bf8607f5e33a896b (diff) | |
| download | karakeep-b9a8ca294848f127eb5f4c9b0837a7218ace8f7e.tar.zst | |
feat(cli): Implement a full account dump archive
Diffstat (limited to 'apps/cli/src/index.ts')
| -rw-r--r-- | apps/cli/src/index.ts | 2 |
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()); |
