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

22 lines
411 B
Perl
Raw Normal View History

2018-07-03 17:39:05 +02:00
package App::Git::IssueManager;
2018-09-13 23:18:15 +02:00
#ABSTRACT: main MooseX class for git issue manager
2018-07-03 17:39:05 +02:00
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
2021-05-25 21:28:55 +02:00
app_exclude 'App::Git::IssueManager::Config','App::Git::IssueManager::Webinterface';
1;