Layer composition in installConfig uses sequential composition (>>>) in nested manner:
baseInstall >>> (configureRootLayer >>> namedLayer)
- This creates implicit ordering dependencies
- Both
configureRootLayer and namedLayer require ScribeConfigurator from baseInstall
- Sequential composition is correct but could be clearer
- Should probably use
ZLayer.make for clearer dependency expression
- Add clearer doc explaining the required ordering
Layer composition in
installConfiguses sequential composition (>>>) in nested manner:configureRootLayerandnamedLayerrequireScribeConfiguratorfrombaseInstallZLayer.makefor clearer dependency expression