projects
/
dbsrgits/DBIx-Class.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
minor changes
[dbsrgits/DBIx-Class.git]
/
lib
/
DBIx
/
Class
/
Relationship
/
Helpers.pm
1
package # hide from PAUSE
2
DBIx::Class::Relationship::Helpers;
3
4
use strict;
5
use warnings;
6
7
use base qw/DBIx::Class/;
8
9
__PACKAGE__->load_components(qw/
10
Relationship::HasMany
11
Relationship::HasOne
12
Relationship::BelongsTo
13
Relationship::ManyToMany
14
/);
15
16
1;