UNPKG

convex

Version:

Client for the Convex Cloud

8 lines (6 loc) 262 B
import { Command } from "@commander-js/extra-typings"; import { projectCreate } from "./projectCreate.js"; export const project = new Command("project") .summary("Manage projects") .description("Manage projects in your team.") .addCommand(projectCreate);