diff options
Diffstat (limited to '')
| -rw-r--r-- | apps/cli/src/index.ts (renamed from apps/cli/index.ts) | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/apps/cli/index.ts b/apps/cli/src/index.ts index 5971b811..cdb2956e 100644 --- a/apps/cli/index.ts +++ b/apps/cli/src/index.ts @@ -1,9 +1,10 @@ +#! /usr/bin/env node +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"; 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"; const program = new Command() .name("hoarder-cli") |
