Skip to content

Instantly share code, notes, and snippets.

@eicnix
Last active August 29, 2015 14:24
Show Gist options
  • Save eicnix/535ba1316a9c073186fc to your computer and use it in GitHub Desktop.
Save eicnix/535ba1316a9c073186fc to your computer and use it in GitHub Desktop.
Unfiltered server to test dispatch
// Example for lukaseichler.de/how-to-test-dispatch-request/
val filter = unfiltered.filter.Planify {
case _ => ResponseString(
"Hello World!"
)
}
unfiltered.jetty.Server(8080).plan(filter).run()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment