pass parsed arg object to Invocation when using mx-run
[gitmo/MooseX-Runnable.git] / lib / MooseX / Runnable / Invocation / Role / WithParsedArgs.pm
1 package MooseX::Runnable::Invocation::Role::WithParsedArgs;
2 use Moose::Role;
3 use MooseX::Runnable::Util::ArgParser;
4
5 has 'parsed_args' => (
6     is       => 'ro',
7     isa      => 'MooseX::Runnable::Util::ArgParser',
8     required => 1,
9 );
10
11 1;