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