diff options
| author | Mohamed Bassem <me@mbassem.com> | 2025-12-08 11:02:59 +0000 |
|---|---|---|
| committer | Mohamed Bassem <me@mbassem.com> | 2025-12-08 11:02:59 +0000 |
| commit | 69a756aadd94c7a3f648373e1315edb8a245f20d (patch) | |
| tree | 3bc26cb1009d356d525abc7dc505ad90cf671dc4 /apps/cli/src/index.ts | |
| parent | 6886385ce239f63271639f047093ba307c87f2e6 (diff) | |
| download | karakeep-69a756aadd94c7a3f648373e1315edb8a245f20d.tar.zst | |
feat(cli): Add ability to list users for the admin in the CLImain
Diffstat (limited to 'apps/cli/src/index.ts')
| -rw-r--r-- | apps/cli/src/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index df7d9512..8158c0b8 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -1,3 +1,4 @@ +import { adminCmd } from "@/commands/admin"; import { bookmarkCmd } from "@/commands/bookmarks"; import { dumpCmd } from "@/commands/dump"; import { listsCmd } from "@/commands/lists"; @@ -31,6 +32,7 @@ const program = new Command() : "0.0.0", ); +program.addCommand(adminCmd); program.addCommand(bookmarkCmd); program.addCommand(listsCmd); program.addCommand(tagsCmd); |
