keep all namespaces clean
[p5sagit/Devel-REPL.git] / lib / Devel / REPL / Plugin.pm
CommitLineData
4d33251a 1use strict;
2use warnings;
6f4f9516 3package Devel::REPL::Plugin;
4
4d33251a 5use Devel::REPL::Meta::Plugin;
6use Moose::Role ();
1d6c2dbc 7use namespace::autoclean;
4d33251a 8
9sub import {
10 my $target = caller;
e5c58ffa 11 Devel::REPL::Meta::Plugin->initialize($target);
4d33251a 12 goto &Moose::Role::import;
13}
14
151;