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