Add stuff to .gitignore
[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
6a2f1e96 12# Ordering important. :)
7d26c84b 13with qw/
6a2f1e96 14 CatalystX::DynamicComponent
7d26c84b 15 CatalystX::ModelsFromConfig
6a2f1e96 16 CatalystX::ModelToControllerReflector
7d26c84b 17/;
18
8798165a 19our $VERSION = '0.01';
20
8798165a 21__PACKAGE__->config( name => 'DynamicAppDemo' );
22
8798165a 23__PACKAGE__->setup();
24
fa2fa199 25__PACKAGE__->meta->make_immutable;
8798165a 26