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

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,
  // ...
)