Switch to Mouse::Exporter
[gitmo/Mouse.git] / lib / Mouse / Meta / Role / Method.pm
1 package Mouse::Meta::Role::Method;
2 use Mouse::Util; # enables strict and warnings
3
4 use Mouse::Meta::Method;
5 our @ISA = qw(Mouse::Meta::Method);
6
7 1;
8 __END__
9
10 =head1 NAME
11
12 Mouse::Meta::Role::Method - A Mouse Method metaclass for Roles
13
14 =head1 SEE ALSO
15
16 L<Moose::Meta::Role::Method>
17
18 =cut
19