start using Class::C3, may need to add a reinitalize bit later, not sure
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Model.pm
CommitLineData
5ee249f2 1package Catalyst::Model;
2
e5ecd5bc 3use Moose;
4extends qw/Catalyst::Component/;
5ee249f2 5
6680c772 6no Moose;
0fc2d522 7
8#We can't immutablize anything that ISA Component just yet
9#__PACKAGE__->meta->make_immutable();
6680c772 10
5ee249f2 11=head1 NAME
12
13Catalyst::Model - Catalyst Model base class
14
15=head1 SYNOPSIS
16
17See L<Catalyst>.
18
19=head1 DESCRIPTION
20
21Catalyst Model base class.
22
8a7d038a 23=head1 METHODS
24
25Implements the same methods as other Catalyst components, see
26L<Catalyst::Component>
27
5ee249f2 28=head1 AUTHOR
29
30Sebastian Riedel, C<sri@oook.de>
31
32=head1 COPYRIGHT
33
34This program is free software, you can redistribute it and/or modify it under
35the same terms as Perl itself.
36
37=cut
38
391;