Skip to content

Instantly share code, notes, and snippets.

@adamw
Created June 7, 2019 19:20
Show Gist options
  • Save adamw/9de0d397be15c2830844de5b0d2e6d70 to your computer and use it in GitHub Desktop.
Save adamw/9de0d397be15c2830844de5b0d2e6d70 to your computer and use it in GitHub Desktop.
val service: HttpRoutes[Task] = petEndpoint.toZioRoutes { petId =>
if (petId == 35) {
UIO(Pet("Tapirus terrestris", "https://en.wikipedia.org/wiki/Tapir"))
} else {
IO.fail("Unknown pet id")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment