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