parallelise connection setup
[scpubgit/Object-Remote.git] / lib / Object / Remote / Connector / Local.pm
1 package Object::Remote::Connector::Local;
2
3 use Moo;
4
5 with 'Object::Remote::Role::Connector::PerlInterpreter';
6
7 no warnings 'once';
8
9 push @Object::Remote::Connection::Guess, sub {
10   if (($_[0]||'') eq '-') { __PACKAGE__->new }
11 };
12
13 1;