  $a->get('/<%= $module %>')->to(controller=>'<%= $controller %>', action => 'index');
  $a->get('/api/<%= $module %>')->to(controller=>'<%= $controller %>', action => 'list');
  $a->post('/api/<%= $module %>/list')->to(controller=>'<%= $controller %>', action => 'list');
  $a->get('/api/<%= $module %>/#<%= $pk %>')->to(controller=>'<%= $controller %>', action => 'read');
  $a->post('/api/<%= $module %>')->to(controller=>'<%= $controller %>', action => 'create');
  $a->put('/api/<%= $module %>/#<%= $pk %>')->to(controller=>'<%= $controller %>', action => 'update');
  $a->delete('/api/<%= $module %>/#<%= $pk %>')->to(controller=>'<%= $controller %>', action => 'delete');