10 lines
198 B
Perl
10 lines
198 B
Perl
#!perl
|
|
# ABSTRACT: subcommand to git for issue management
|
|
# PODNAME: git-issue
|
|
use strict;
|
|
use warnings;
|
|
use Try::Tiny;
|
|
use App::Git::IssueManager;
|
|
|
|
App::Git::IssueManager->new_with_command()->run;
|