create ReadChannel object to allow moving Shere logic into connect
[scpubgit/Object-Remote.git] / lib / Object / Remote / Connector / Local.pm
CommitLineData
9e72f0cf 1package Object::Remote::Connector::Local;
2
9e72f0cf 3use Moo;
4
a9fdb55e 5with 'Object::Remote::Role::Connector::PerlInterpreter';
9e72f0cf 6
7efea51f 7no warnings 'once';
8
84b04178 9push @Object::Remote::Connection::Guess, sub {
10 if (($_[0]||'') eq '-') { __PACKAGE__->new->connect }
11};
12
9e72f0cf 131;