Last active
May 25, 2024 10:20
-
-
Save dacr/1dfb421d36732ebaff5443d3b9bdbdbe to your computer and use it in GitHub Desktop.
ZIO learning - defining and injecting a custom config layer into the environment / published by https://github.com/dacr/code-examples-manager #1b829e9d-d6e2-4522-8432-94ec54de2e34/237815234995672e2f75e8daacef23a3321a1eb0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// summary : ZIO learning - defining and injecting a custom config layer into the environment | |
// keywords : scala, zio, learning, pure-functional, @testable | |
// publish : gist | |
// authors : David Crosson | |
// license : Apache NON-AI License Version 2.0 (https://raw.githubusercontent.com/non-ai-licenses/non-ai-licenses/main/NON-AI-APACHE2) | |
// id : 1b829e9d-d6e2-4522-8432-94ec54de2e34 | |
// created-on : 2022-01-11T13:36:47+01:00 | |
// managed-by : https://github.com/dacr/code-examples-manager | |
// run-with : scala-cli $file | |
// --------------------- | |
//> using scala "3.4.2" | |
//> using dep "dev.zio::zio:2.0.13" | |
//> using dep "fr.janalyse::zio-worksheet:2.0.13.0" | |
// --------------------- | |
import zio.*, zio.worksheet.* | |
case class AuthConfig(username: String, password: String) | |
case class Config(auth: AuthConfig) | |
val logic: ZIO[Config, Exception, Unit] = for { | |
auth <- ZIO.environment[Config].map(_.get.auth) | |
_ <- Console.printLine(s"Hello ${auth.username} !") | |
} yield () | |
// ------------------------------------------------------------- | |
val config = Config(AuthConfig("lucien", "pass")) | |
logic.provideLayer(ZLayer.succeed(config)).unsafeRun |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment