mirror of
https://github.com/strapi/strapi.git
synced 2025-09-29 02:11:45 +00:00
8 lines
315 B
TypeScript
8 lines
315 B
TypeScript
import { Command } from 'commander';
|
|
import { defineCloudNamespace } from '../cloud/command';
|
|
|
|
export function createEnvironmentCommand(command: Command): Command {
|
|
const cloud = defineCloudNamespace(command);
|
|
return cloud.command('environment').description('Manage environments for a Strapi Cloud project');
|
|
}
|