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