@agentkai/cli
Version:
AgentKai命令行界面
14 lines (13 loc) • 390 B
JavaScript
export class ConfigCommand {
constructor(configService) {
Object.defineProperty(this, "configService", {
enumerable: true,
configurable: true,
writable: true,
value: configService
});
}
async execute(options, commandArgs = []) {
return this.configService.handleConfigCommand(options, commandArgs);
}
}