summaryrefslogtreecommitdiffstats
path: root/lib/App/Hiveminder/Command.pm
blob: a85f6d013209b45483b5d823bb790f64e7052266 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/perl
package App::Hiveminder::Command;
use Moose;
use Net::Hiveminder;
extends 'MooseX::App::Cmd::Command';

has hm => (
    isa     => 'Net::Hiveminder',
    is      => 'ro',
    default => sub { Net::Hiveminder->new(use_config => 1) },
);

__PACKAGE__->meta()->make_immutable();
1;