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

22 lines
411 B
Perl

package App::Git::IssueManager;
#ABSTRACT: main MooseX class for git issue manager
use strict;
use warnings;
use Moose;
use MooseX::App qw(Color BashCompletion);
# the version of the module
our $VERSION = '0.1';
=head1 DESCRIPTION
GIT IssueManager
Manages issues within your repository using a "issues" branch.
=cut
app_exclude 'App::Git::IssueManager::Config','App::Git::IssueManager::Webinterface';
1;