Skip to content

Instantly share code, notes, and snippets.

@adamw
Created February 18, 2019 12:48
Show Gist options
  • Save adamw/0732769678fd670d589414469fd1204e to your computer and use it in GitHub Desktop.
Save adamw/0732769678fd670d589414469fd1204e to your computer and use it in GitHub Desktop.
val findBook: Endpoint[String, Unit, Option[Book], Nothing] =
endpoint
.get
.in("book" / "find" / path[String])
.out(jsonBody[Option[Book]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment