Skip to main content
Version: 1.0.18

URLayer

URLayer[-RIn, +ROut] is a type alias for ZLayer[RIn, Nothing, ROut], which represents a layer that requires RIn as its input, it can't fail, and returns ROut as its output.

type URLayer[-RIn, +ROut] = ZLayer[RIn, Nothing, ROut]