vietj / ceylon-cayla

A web framework for Ceylon
39 stars 8 forks source link

Controller container can be routers #19

Closed vietj closed 10 years ago

vietj commented 10 years ago

Enable annotation of router containers to be routers:

route("/foo")
object foo {
  route("/bar")
  shared Bar() extends Controller() { ... }
}