Commit | Line | Data |
---|---|---|
9e72f0cf | 1 | package Object::Remote::Connector::Local; |
2 | ||
9e72f0cf | 3 | use Moo; |
4 | ||
a9fdb55e | 5 | with 'Object::Remote::Role::Connector::PerlInterpreter'; |
9e72f0cf | 6 | |
7efea51f | 7 | no warnings 'once'; |
8 | ||
9031635d | 9 | BEGIN { } |
10 | ||
84b04178 | 11 | push @Object::Remote::Connection::Guess, sub { |
fbd3b8ec | 12 | if (($_[0]||'') eq '-') { __PACKAGE__->new } |
84b04178 | 13 | }; |
14 | ||
9e72f0cf | 15 | 1; |