The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use 5.006;
use strict;
our $AUTHORITY = 'cpan:TOBYINK';
our $VERSION = '0.104';
sub import
{
shift;
my (undef, $opts) = Role::Commons::->parse_arguments(Authority => @_);
my @packages = ref $opts->{package}
? @{ $opts->{package} }
: ($opts->{package}|| scalar caller);
Role::Commons::->import('Authority', -into => $_) for @packages;
}
*AUTHORITY = Role::Commons::Authority::->can('AUTHORITY');
1;