UNPKG

convex

Version:

Client for the Convex Cloud

9 lines (8 loc) 486 B
"use strict"; import { Command } from "@commander-js/extra-typings"; import { deploymentTokenCreate } from "./deploymentTokenCreate.js"; import { deploymentTokenDelete } from "./deploymentTokenDelete.js"; export const deploymentToken = new Command("token").summary("Manage access tokens").description( "Create and delete access tokens. Currently supports deploy keys." ).addCommand(deploymentTokenCreate).addCommand(deploymentTokenDelete); //# sourceMappingURL=deploymentToken.js.map