do not index these secondary packages - they cannot be loaded independently
[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.003027';
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;