Don't reinvent Catalyst
- example:
sub default {
my ($self, $c, $controller, $method, @args) = @_;
my $class = "MyApp::Controller::\u$path";
my $html = $class->$method(@args);
$c->response->body($html);
}
- No!
- No!
- No!
- don't do this
- learn the dispatcher