8 lines
315 B
TypeScript
Raw Normal View History

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');
}