package Getopt::Dakkar::ArgPack; use Getopt::Dakkar::Style qw(class); # VERSION # ABSTRACT: pack of arguments # this needs work has getopt => ( is => 'ro', required => 1, weak_ref => 1 ); has options => ( is => 'ro', isa => HashRef, default => sub { +{} } ); has arguments => ( is => 'ro', isa => HashRef, default => sub { +{} } );