myapp_create.pl Controller Foo
created "......../lib/Controller/Foo.pm"
created "......../t/controller_Foo.t"
sub index :Path :Args(0) {
my ( $self, $c ) = @_;
$c->response->body('Matched XXXX::Controller::Foo in Foo.');
}
sub root :Chained('/') :PathPrefix :CaptureArgs(0) {
# common stuff for this controller
}
sub bar :Chained('root') :PathPart('bar') :Args(0) {
my ( $self, $c ) = @_;
# something
}