The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
package Devel::REPL::Plugin;
BEGIN {
  $Devel::REPL::Plugin::AUTHORITY = 'cpan:PHAYLON';
}
$Devel::REPL::Plugin::VERSION = '1.003026';
use Devel::REPL::Meta::Plugin;
use Moose::Role ();

sub import {
  my $target = caller;
  Devel::REPL::Meta::Plugin->initialize($target);
  goto &Moose::Role::import;
}

1;