mirror of
https://github.com/strapi/strapi.git
synced 2025-09-29 10:22:36 +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');
|
||
|
}
|