Skip to content

Instantly share code, notes, and snippets.

@iolo
Created September 11, 2012 08:33
Show Gist options
  • Save iolo/3696918 to your computer and use it in GitHub Desktop.
Save iolo/3696918 to your computer and use it in GitHub Desktop.
import cc.spray._
trait HelloService extends Directives {
val helloService = {
path("hello" / PathElement) { name =>
get {
completeWith { “hello, “ + name }
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment