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 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());