Skip to content

Instantly share code, notes, and snippets.

@fayimora
Last active December 22, 2015 18:09
Show Gist options
  • Save fayimora/6511085 to your computer and use it in GitHub Desktop.
Save fayimora/6511085 to your computer and use it in GitHub Desktop.
val api = new Namespace("api"){
val v1 = new Namespace("v1"){
GET on "/" to Application.index _
val todos = resources("todos", Todos)
val posts = resources("posts", Posts)
val comments = resources("comments", Comments)
}
val v1_1 = new Namespace("v1.1"){
GET on "/" to Application.index _
val todos = resources("todos", Todos)
val posts = resources("posts", Posts)
val comments = resources("comments", Comments)
val tags = resources("tags", Tags)
}
val v2 = new Namespace("v2"){
GET on "/" to Application.index _
val posts = resources("posts", Posts)
val comments = resources("comments", Comments)
val tags = resources("tags", Tags)
val categories = resources("categories", Categories)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment