9b655d2295b722cf9edc5a69f74ff7976d3fd1d9
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Index.pm
1 package TestApp::Controller::Index;
2
3 use strict;
4 use base 'Catalyst::Base';
5
6 sub index : Private {
7     my ( $self, $c ) = @_;
8     $c->res->body( 'Index index' );
9 }
10
11 1;