10 lines
198 B
Plaintext
10 lines
198 B
Plaintext
|
#!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;
|