Basic routes
Defining the routes is pretty simple if you are used to the Akka-HTTP routing DSL syntax.
xxxxxxxxxx
val route = path("product" / JavaUUID) { id: ProductId =>
get {
???
} ~ put {
???
}
} ~ path("products") {
get {
???
} ~
post {
???
}
}