Well, thats dynamic model class loading from 100% config, with tests. Should be CPANa...
[catagits/CatalystX-DynamicComponent.git] / lib / DynamicAppDemo.pm
CommitLineData
8798165a 1package DynamicAppDemo;
fa2fa199 2use Moose;
3use Catalyst::Runtime '5.80002';
8798165a 4
fa2fa199 5use Catalyst qw/
6 -Debug
7 ConfigLoader
8/;
8798165a 9
fa2fa199 10extends 'Catalyst';
8798165a 11
7d26c84b 12with qw/
13 CatalystX::ModelsFromConfig
14/;
15
8798165a 16our $VERSION = '0.01';
17
8798165a 18__PACKAGE__->config( name => 'DynamicAppDemo' );
19
8798165a 20__PACKAGE__->setup();
21
fa2fa199 22__PACKAGE__->meta->make_immutable;
8798165a 23