summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/App/Hiveminder/Command.pm (renamed from lib/App/Hiveminder/Base.pm)2
-rw-r--r--lib/App/Hiveminder/Command/create.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/App/Hiveminder/Base.pm b/lib/App/Hiveminder/Command.pm
index 7f40483..4d76dd1 100644
--- a/lib/App/Hiveminder/Base.pm
+++ b/lib/App/Hiveminder/Command.pm
@@ -1,5 +1,5 @@
#!/usr/bin/perl
-package App::Hiveminder::Base;
+package App::Hiveminder::Command;
use Moose;
use Net::Hiveminder;
extends 'MooseX::App::Cmd::Command';
diff --git a/lib/App/Hiveminder/Command/create.pm b/lib/App/Hiveminder/Command/create.pm
index ebdae82..c2ed1c7 100644
--- a/lib/App/Hiveminder/Command/create.pm
+++ b/lib/App/Hiveminder/Command/create.pm
@@ -3,7 +3,7 @@ package App::Hiveminder::Command::create;
use Moose;
use App::Hiveminder::Utils qw/get_text_from_editor_or_cmdline display_tasks
update_tasks/;
-extends 'App::Hiveminder::Base';
+extends 'App::Hiveminder::Command';
sub run {
my ($self, $opt, $args) = @_;