(root: LayerNode.Node<A, E, any>, replacements?: readonly LayerNode.Replacement[])
| 13 | const tags = LayerNode.tags({ app: [] }) |
| 14 | const make = tags.make("app") |
| 15 | const build = <A, E>(root: LayerNode.Node<A, E, any>, replacements?: readonly LayerNode.Replacement[]) => |
| 16 | LayerNode.compile(root, replacements) as Layer.Layer<A, E> |
| 17 | const valueLayer = Layer.succeed(Value, Value.of({ value: "production" })) |
| 18 | const greetingLayer = Layer.effect( |
| 19 | Greeting, |