prvng_core/nulib/lib_provisioning/integrations/mod.nu
Jesús Pérez 316622a78f
merge(refactor/lazy-loading): ADR-025 lazy-loading complete
557 files merged. Conflicts resolved:
  - CHANGELOG.md: took refactor/lazy-loading (session changelog)
  - versions.ncl: took refactor/lazy-loading (adds typedialog entries)
2026-04-17 23:09:56 +01:00

10 lines
498 B
Text

# Integrations Module
# Top-level module that provides access to all integration providers:
# - Ecosystem: External integrations (backup, runtime, SSH, GitOps, service)
# - IaC: Infrastructure-from-Code to orchestrator conversion
# integrations/ facade — selective re-exports via child facades (ADR-025 L3).
# Both children (ecosystem/mod.nu, iac/mod.nu) are already selective, so this
# facade can re-export their full API without multiplying stars.
export use ./ecosystem *
export use ./iac *