diff options
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 cfb1d520..7c948c47 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -1,5 +1,6 @@ import { bookmarkCmd } from "@/commands/bookmarks"; import { listsCmd } from "@/commands/lists"; +import { migrateCmd } from "@/commands/migrate"; import { tagsCmd } from "@/commands/tags"; import { whoamiCmd } from "@/commands/whoami"; import { setGlobalOptions } from "@/lib/globals"; @@ -32,6 +33,7 @@ program.addCommand(bookmarkCmd); program.addCommand(listsCmd); program.addCommand(tagsCmd); program.addCommand(whoamiCmd); +program.addCommand(migrateCmd); setGlobalOptions(program.opts()); |
