summaryrefslogtreecommitdiff
path: root/lib/Getopt/Dakkar.pm
blob: 1432987b72245b7a7c1028c8ca7d9ff812991842 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Getopt::Dakkar; 
use Getopt::Dakkar::Style qw(class);
use Module::Runtime qw(use_module);
# VERSION 
# ABSTRACT: the best command line parser ever 
 
with 'Getopt::Dakkar::Role::Command';
 
has '+name' => ( default => $0 );
 
sub go($self,$args=\@ARGV) {
    return $self->parse($args,undef);
}