separate scope setup in rule bodies into its own op
[scpubgit/DKit.git] / lib / DX / Role / Op / WithArgs.pm
CommitLineData
02ae4168 1package DX::Role::Op::WithArgs;
2
3use Moo::Role;
4
5has args => (is => 'ro');
6
7with 'DX::Role::Op';
8
91;