Files
typescript-decompiler/src/layers/README.md
T
2026-05-25 05:47:28 +00:00

338 B

Layers (Dependency Injection)

Content: Static Application Wiring.

Usage

Construct the final application layers here. This is where you decide: "In Production, use Postgres. In Test, use InMemory."

Example

// Main.layer.ts
export const MainLayer = Layer.mergeAll(
  PostgresLive,
  StripeLive,
  // ...
)