948e63baed76aecc1d92c2d784d4fbb251edae00
[scpubgit/Object-Remote.git] / lib / Object / Remote / CodeContainer.pm
1 package Object::Remote::CodeContainer;
2
3 use Moo;
4
5 has code => (is => 'ro', required => 1);
6
7 sub call { shift->code->(@_) }
8
9 1;