App-Git-IssueManager/bin/git-issue

19 lines
422 B
Perl
Executable File

#!/usr/bin/env perl
# ABSTRACT: subcommand to git for issue management
# PODNAME: git-issue
use strict;
use warnings;
use Try::Tiny;
use App::Git::IssueManager;
=head1 DESCRIPTION
B<git-issue> is a subcommand to the git version control system for manage issues in a
distributed manner. It uses the B<Git::IssueManager> module to provide all management
functions.
=cut
App::Git::IssueManager->new_with_command()->run;