created application to test extending the container
[catagits/Catalyst-Runtime.git] / t / lib / TestAppCustomContainerNoSugar / Controller / Root.pm
1 package TestAppCustomContainerNoSugar::Controller::Root;
2 use Moose;
3 BEGIN { extends 'Catalyst::Controller' }
4
5 __PACKAGE__->meta->make_immutable;
6 no Moose;
7 1;