feat(02-01): create generators barrel index.ts

- Re-exports buildRcloneConf, buildIntuneInstall, buildIntuneDetection, buildRmmScript
- Phase 4 will import all generators from this single entry point
- No implementation logic — purely structural re-exports
This commit is contained in:
2026-03-26 10:53:49 +01:00
parent 964022b5fc
commit cc53bc014f
+7
View File
@@ -0,0 +1,7 @@
// src/generators/index.ts
// Re-exports all generator functions.
// Phase 4 imports generators from this barrel — do not remove exports.
export { buildRcloneConf } from './rclone-conf';
export { buildIntuneInstall } from './intune-install';
export { buildIntuneDetection } from './intune-detection';
export { buildRmmScript } from './rmm-script';