summaryrefslogtreecommitdiff
path: root/inc/SimpleAuthority.pm
blob: 839571a7b810a463f26c048d4b6ba28681a1564e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;
package inc::SimpleAuthority;

use Moose;
with 'Dist::Zilla::Role::MetaProvider';

sub metadata
{
    return +{ x_authority => 'cpan:STEVAN' };
}

1;