Initial commit

This commit is contained in:
ada
2026-05-25 05:47:28 +00:00
commit 4d6495ffda
97 changed files with 13403 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# 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
```typescript
// Main.layer.ts
export const MainLayer = Layer.mergeAll(
PostgresLive,
StripeLive,
// ...
)
```