aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/index.ts
diff options
context:
space:
mode:
authorMohamedBassem <me@mbassem.com>2024-04-24 11:08:30 +0100
committerMohamedBassem <me@mbassem.com>2024-04-24 11:08:30 +0100
commitaf0cf9c1ee10901ab91b04a1d73afdcb2191a88f (patch)
treec1d46b198ef7964fbc2199477affc96ed2016932 /apps/cli/index.ts
parent5dac180f486cbc6bb202debd5dde996a9c8204b4 (diff)
downloadkarakeep-af0cf9c1ee10901ab91b04a1d73afdcb2191a88f.tar.zst
feature(cli): Add ability to manipulate lists, tags and update bookmarks
Diffstat (limited to 'apps/cli/index.ts')
-rw-r--r--apps/cli/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/cli/index.ts b/apps/cli/index.ts
index 4d0adafb..5971b811 100644
--- a/apps/cli/index.ts
+++ b/apps/cli/index.ts
@@ -1,5 +1,7 @@
import { Command, Option } from "@commander-js/extra-typings";
import { bookmarkCmd } from "commands/bookmarks";
+import { listsCmd } from "commands/lists";
+import { tagsCmd } from "commands/tags";
import { whoamiCmd } from "commands/whoami";
import { setGlobalOptions } from "lib/globals";
@@ -22,6 +24,8 @@ const program = new Command()
.version(process.env.SERVER_VERSION ?? "nightly");
program.addCommand(bookmarkCmd);
+program.addCommand(listsCmd);
+program.addCommand(tagsCmd);
program.addCommand(whoamiCmd);
setGlobalOptions(program.opts());