Add types::structured, as we need a calling convention.. Add namespace::autoclean...
[catagits/CatalystX-DynamicComponent.git] / lib / DynamicAppDemo / Controller / Root.pm
1 package DynamicAppDemo::Controller::Root;
2 use Moose;
3
4 # Note - need old style actions
5 # Note - do not extend general controller base class, which messes with
6 #        action registration!
7 BEGIN { extends 'Catalyst::Controller' }
8
9 __PACKAGE__->config->{namespace} = '';
10
11 sub root : Chained('/') PathPath() CaptureArgs() {}
12
13 sub end : ActionClass('RenderView') {}
14
15 __PACKAGE__->meta->make_immutable;
16