Updated main docs, altered mail address in POD for 0.01
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
CommitLineData
ea2e61bf 1package DBIx::Class::Core;
2
3use strict;
4use warnings;
223b8fe3 5no warnings 'qw';
ea2e61bf 6
126042ee 7use base qw/DBIx::Class/;
8
9__PACKAGE__->load_components(qw/
126042ee 10 InflateColumn
438adc0e 11 Relationship
126042ee 12 PK
7624b19f 13 Row
126042ee 14 Table
126042ee 15 Exception
16 AccessorGroup/);
ea2e61bf 17
181;
34d52be2 19
20=head1 NAME
21
22DBIx::Class::Core - Core set of DBIx::Class modules.
23
24=head1 DESCRIPTION
25
26This class just inherits from the various modules that makes
126042ee 27up the DBIx::Class core features.
34d52be2 28
29
30=head1 AUTHORS
31
daec44b8 32Matt S. Trout <mst@shadowcatsystems.co.uk>
34d52be2 33
34=head1 LICENSE
35
36You may distribute this code under the same terms as Perl itself.
37
38=cut
39