restricted code
[gitmo/Role-Tiny.git] / lib / Role / Tiny / Restricted / With.pm
CommitLineData
73cc2ff3 1package Role::Tiny::Restricted::With;
2
3use strict;
4use warnings FATAL => 'all';
5use Role::Tiny::Restricted ();
6
7use Exporter 'import';
8our @EXPORT = qw( with );
9
10sub with {
11 my $target = caller;
12 Role::Tiny::Restricted->apply_union_of_roles_to_package($target, @_)
13}
14
151;