got all general logging done, start of adding ids to objects and incorporating ids...
[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 BEGIN {  }
10
11 push @Object::Remote::Connection::Guess, sub {
12   if (($_[0]||'') eq '-') { __PACKAGE__->new }
13 };
14
15 1;