update distar url
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault / Controller / IndexChained.pm
CommitLineData
05b47f2e 1package TestAppIndexDefault::Controller::IndexChained;
2ee0056e 2
3use base 'Catalyst::Controller';
4
5sub index : Chained('/') PathPart('indexchained') CaptureArgs(0) {}
6
7sub index_endpoint : Chained('index') PathPart('') Args(0) {
8 my ($self, $c) = @_;
9 $c->res->body('index_chained');
10}
11
121;