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