summaryrefslogtreecommitdiff
path: root/Data-MultiValued/lib/Data/MultiValued/AttributeTrait/Tags.pm
blob: fff57766aef8d4c498f313fc7598cf7fc05507b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package Data::MultiValued::AttributeTrait::Tags; 
use Moose::Role;
use Data::MultiValued::Tags;
with 'Data::MultiValued::AttributeTrait';
 
sub multivalue_storage_class 'Data::MultiValued::Tags' };
 
package Moose::Meta::Attribute::Custom::Trait::MultiValued::Tags;{ 
sub register_implementation 'Data::MultiValued::AttributeTrait::Tags' }
}
 
1;