File: Local.pm

package info (click to toggle)
libobject-remote-perl 0.004004-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 520 kB
  • sloc: perl: 2,395; makefile: 10
file content (18 lines) | stat: -rw-r--r-- 275 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package Object::Remote::Connector::Local;

use Moo;

with 'Object::Remote::Role::Connector::PerlInterpreter';

no warnings 'once';

BEGIN {  }

push @Object::Remote::Connection::Guess, sub {
  if (($_[0]||'') eq '-') {
      shift(@_);
      __PACKAGE__->new(@_);
  }
};

1;