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