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