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