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