revit-cli
Version:
A scalable CLI tool for Revit communication and data manipulation
21 lines • 670 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CLIOrchestrator = void 0;
const orchestrator_1 = require("./cli/orchestrator");
Object.defineProperty(exports, "CLIOrchestrator", { enumerable: true, get: function () { return orchestrator_1.CLIOrchestrator; } });
/**
* Main CLI entry point
*
* This file serves as the thin entry point that orchestrates
* all CLI components through the modular architecture.
*/
async function main() {
const cli = new orchestrator_1.CLIOrchestrator();
await cli.execute();
}
// Start the CLI
if (require.main === module) {
main();
}
//# sourceMappingURL=cli.js.map