Here's a suggestion for another potential syntax that looks even more like decorator annotations and removes the need for the `.for` DSL. ``` js (a).RouteConfig([ { path: '/' } ]) (a).View({ template: '...' }) (MyController) function MyController () {} ```
Here's a suggestion for another potential syntax that looks even more like decorator annotations and removes the need for the
.forDSL.