mirror of
https://github.com/strapi/strapi.git
synced 2025-09-29 02:11:45 +00:00
6 lines
185 B
TypeScript
6 lines
185 B
TypeScript
import { Command } from 'commander';
|
|
|
|
export function defineCloudNamespace(command: Command): Command {
|
|
return command.command('cloud').description('Manage Strapi Cloud projects');
|
|
}
|