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