import { defineCommand } from "../lib/command" import { globalOptions } from "../lib/global-options" import { orgApiKeyCreateCommand } from "./org-api-key-create" import { orgApiKeyDeleteCommand } from "./org-api-key-delete" import { orgApiKeyListCommand } from "./org-api-key-list" import { orgApiKeyRenameCommand } from "./org-api-key-rename" export const orgApiKeyCommand = defineCommand({ name: "apikey", description: "Manage organization API keys", options: globalOptions, subcommands: [ orgApiKeyCreateCommand, orgApiKeyDeleteCommand, orgApiKeyListCommand, orgApiKeyRenameCommand, ], })