Updating branch to current revision
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestAppIndexDefault / Controller / IndexPrivate.pm
CommitLineData
e28a6876 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;