diff options
| author | MohamedBassem <me@mbassem.com> | 2024-04-24 11:08:30 +0100 |
|---|---|---|
| committer | MohamedBassem <me@mbassem.com> | 2024-04-24 11:08:30 +0100 |
| commit | af0cf9c1ee10901ab91b04a1d73afdcb2191a88f (patch) | |
| tree | c1d46b198ef7964fbc2199477affc96ed2016932 /apps/cli/index.ts | |
| parent | 5dac180f486cbc6bb202debd5dde996a9c8204b4 (diff) | |
| download | karakeep-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.ts | 4 |
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()); |
