import { defineCommand } from "../lib/command" import { globalOptions } from "../lib/global-options" import { projectCreateCommand } from "./project-create" import { projectDeleteCommand } from "./project-delete" import { projectListCommand } from "./project-list" import { projectRenameCommand } from "./project-rename" import { projectShowCommand } from "./project-show" export const projectCommand = defineCommand({ name: "project", aliases: ["proj"], description: "Manage projects", options: globalOptions, subcommands: [ projectCreateCommand, projectDeleteCommand, projectListCommand, projectRenameCommand, projectShowCommand, ], })