Base class for controllers we auto-generate
[catagits/CatalystX-DynamicComponent.git] / lib / DynamicAppDemo / ControllerBase.pm
CommitLineData
d9d2e65d 1package DynamicAppDemo::ControllerBase;
2use Moose;
3use namespace::clean -except => 'meta';
4
5# Should not need attributes here, but what the hell..
6BEGIN { extends 'Catalyst::Controller' }
7
8__PACKAGE__->meta->make_immutable;
9