start using Class::C3, may need to add a reinitalize bit later, not sure
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Base.pm
1 package Catalyst::Base;
2
3 use Class::C3;
4 use Moose;
5 BEGIN{ extends qw/Catalyst::Controller/ };
6 no Moose;
7
8 1;
9
10 __END__
11
12 =head1 NAME
13
14 Catalyst::Base - Deprecated base class
15
16 =head1 DESCRIPTION
17
18 This used to be the base class for Catalyst Controllers. It
19 remains here for compability reasons.
20
21 =head1 SEE ALSO
22
23 L<Catalyst>, L<Catalyst::Controller>.
24
25 =head1 AUTHOR
26
27 Sebastian Riedel, C<sri@cpan.org>
28 Marcus Ramberg, C<mramberg@cpan.org>
29 Matt S Trout, C<mst@shadowcatsystems.co.uk>
30
31 =head1 COPYRIGHT
32
33 This program is free software, you can redistribute it and/or modify it under
34 the same terms as Perl itself.
35
36 =cut