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