stop using Moo as a test package
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Index.pm
CommitLineData
a065abcf 1package TestApp::Controller::Index;
2
3use strict;
c057ae86 4use base 'Catalyst::Controller';
a065abcf 5
6sub index : Private {
7 my ( $self, $c ) = @_;
8 $c->res->body( 'Index index' );
9}
10
111;