More refactoring, created PK::Auto::MySQL
[dbsrgits/DBIx-Class.git] / lib / DBIx / Class / Core.pm
1 package DBIx::Class::Core;
2
3 use strict;
4 use warnings;
5 no warnings 'qw';
6
7 use base qw/DBIx::Class/;
8
9 __PACKAGE__->load_components(qw/
10   Relationship
11   InflateColumn
12   SQL::Abstract
13   PK
14   Row
15   Table
16   Exception
17   AccessorGroup/);
18
19 1;
20
21 =head1 NAME 
22
23 DBIx::Class::Core - Core set of DBIx::Class modules.
24
25 =head1 DESCRIPTION
26
27 This class just inherits from the various modules that makes 
28 up the DBIx::Class core features.
29
30
31 =head1 AUTHORS
32
33 Matt S. Trout <perl-stuff@trout.me.uk>
34
35 =head1 LICENSE
36
37 You may distribute this code under the same terms as Perl itself.
38
39 =cut
40