aboutsummaryrefslogtreecommitdiffstats
path: root/apps/cli/commands/whoami.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/cli/commands/whoami.ts')
-rw-r--r--apps/cli/commands/whoami.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/apps/cli/commands/whoami.ts b/apps/cli/commands/whoami.ts
deleted file mode 100644
index 2b32f2f0..00000000
--- a/apps/cli/commands/whoami.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { Command } from "@commander-js/extra-typings";
-import { getAPIClient } from "lib/trpc";
-
-export const whoamiCmd = new Command()
- .name("whoami")
- .description("returns info about the owner of this API key")
- .action(async () => {
- const resp = await getAPIClient().users.whoami.query();
- console.log(resp);
- });