import initial sketch of Object::Remote
[scpubgit/Object-Remote.git] / lib / Object / Remote / Proxy.pm
CommitLineData
9e72f0cf 1package Object::Remote::Proxy;
2
3use strictures 1;
4
5sub AUTOLOAD {
6 my $self = shift;
7 (my $method) = (our $AUTOLOAD =~ /([^:]+)$/);
8 $self->{handle}->call($method => @_);
9}
10
11sub DESTROY { }
12
131;