summaryrefslogtreecommitdiffstats
path: root/lib/App/Hiveminder/Command.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/App/Hiveminder/Command.pm')
-rw-r--r--lib/App/Hiveminder/Command.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/App/Hiveminder/Command.pm b/lib/App/Hiveminder/Command.pm
index fd58ab7..8647d35 100644
--- a/lib/App/Hiveminder/Command.pm
+++ b/lib/App/Hiveminder/Command.pm
@@ -4,10 +4,11 @@ use Moose;
use Net::Hiveminder;
extends 'MooseX::App::Cmd::Command';
-has hm => (
+has _hm => (
isa => 'Net::Hiveminder',
is => 'ro',
default => sub { Net::Hiveminder->new(use_config => 1) },
+ reader => 'hm',
);
sub run {