App-Git-IssueManager/lib/App/Git/IssueManager.pm

22 lines
322 B
Perl
Raw Normal View History

2018-07-03 17:39:05 +02:00
package App::Git::IssueManager;
use strict;
use warnings;
use Moose;
use MooseX::App qw(Color BashCompletion);
2018-07-03 17:39:05 +02:00
# the version of the module
our $VERSION = '0.1';
2018-07-03 17:39:05 +02:00
=head1 DESCRIPTION
GIT IssueManager
Manages issues within your repository using a "issues" branch.
=cut
2018-07-09 21:17:47 +02:00
app_exclude 'App::Git::IssueManager::Config';
1;