Skip to content

Instantly share code, notes, and snippets.

@brunoborges
Created June 9, 2012 05:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunoborges/2899552 to your computer and use it in GitHub Desktop.
Save brunoborges/2899552 to your computer and use it in GitHub Desktop.
Routing pages with Gamboa (Scala and Wicket)
trait Routes {
self: DSLRouter ⇒
def initRoutes {
"/login" -> classOf[Login]
"/index" -> classOf[Index]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment