Create branch register_actions.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Model.pm
CommitLineData
5ee249f2 1package Catalyst::Model;
2
ae29b412 3use Moose;
4extends qw/Catalyst::Component/;
5
6no Moose;
5ee249f2 7
8=head1 NAME
9
10Catalyst::Model - Catalyst Model base class
11
12=head1 SYNOPSIS
13
14See L<Catalyst>.
15
16=head1 DESCRIPTION
17
18Catalyst Model base class.
19
8a7d038a 20=head1 METHODS
21
22Implements the same methods as other Catalyst components, see
23L<Catalyst::Component>
24
0bf7ab71 25=head1 AUTHORS
5ee249f2 26
0bf7ab71 27Catalyst Contributors, see Catalyst.pm
5ee249f2 28
29=head1 COPYRIGHT
30
31This program is free software, you can redistribute it and/or modify it under
32the same terms as Perl itself.
33
34=cut
35
ae29b412 36__PACKAGE__->meta->make_immutable;
37
5ee249f2 381;