#!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 is a subcommand to the git version control system for manage issues in a distributed manner. It uses the B module to provide all management functions. =cut App::Git::IssueManager->new_with_command()->run;