deb2d248bef3ee8d7ba336d4347f0d234076c221
[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 __PACKAGE__->meta->make_immutable();
8
9 =head1 NAME
10
11 Catalyst::Model - Catalyst Model base class
12
13 =head1 SYNOPSIS
14
15 See L<Catalyst>.
16
17 =head1 DESCRIPTION
18
19 Catalyst Model base class.
20
21 =head1 METHODS
22
23 Implements the same methods as other Catalyst components, see
24 L<Catalyst::Component>
25
26 =head1 AUTHOR
27
28 Sebastian Riedel, C<sri@oook.de>
29
30 =head1 COPYRIGHT
31
32 This program is free software, you can redistribute it and/or modify it under
33 the same terms as Perl itself.
34
35 =cut
36
37 1;