nicer action sorting for Path
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault / Controller / IndexPrivate.pm
CommitLineData
05b47f2e 1package TestAppIndexDefault::Controller::IndexPrivate;
2
3use base 'Catalyst::Controller';
4
5sub index : Private {
6 my ($self, $c) = @_;
7 $c->res->body('index_private');
8}
9
101;