send ids only for return future
[scpubgit/Object-Remote.git] / lib / Object / Remote / CodeContainer.pm
CommitLineData
fe6c9a7f 1package Object::Remote::CodeContainer;
2
3use Moo;
4
5has code => (is => 'ro', required => 1);
6
7sub call { shift->code->(@_) }
8
91;