aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/src/index.ts
diff options
context:
space:
mode:
authorMohamed Bassem <me@mbassem.com>2025-09-14 13:01:19 +0000
committerMohamed Bassem <me@mbassem.com>2025-09-14 13:01:19 +0000
commitbc0e7461503c6b6d9ef7bec3bf8607f5e33a896b (patch)
treeb39f115346935d559e257a2e9b578087afd4a4b5 /apps/cli/src/index.ts
parent783f72cb91b436e8ee6d7349da4cf72dc3219aa1 (diff)
downloadkarakeep-bc0e7461503c6b6d9ef7bec3bf8607f5e33a896b.tar.zst
feat(cli): Implement a wipe command in the CLI
Diffstat (limited to '')
-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 7c948c47..c698169f 100644
--- a/apps/cli/src/index.ts
+++ b/apps/cli/src/index.ts
@@ -3,6 +3,7 @@ import { listsCmd } from "@/commands/lists";
import { migrateCmd } from "@/commands/migrate";
import { tagsCmd } from "@/commands/tags";
import { whoamiCmd } from "@/commands/whoami";
+import { wipeCmd } from "@/commands/wipe";
import { setGlobalOptions } from "@/lib/globals";
import { Command, Option } from "@commander-js/extra-typings";
@@ -34,6 +35,7 @@ program.addCommand(listsCmd);
program.addCommand(tagsCmd);
program.addCommand(whoamiCmd);
program.addCommand(migrateCmd);
+program.addCommand(wipeCmd);
setGlobalOptions(program.opts());