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