From 2c7c1434ce31811e188c290480d6a89d7fae7a5e Mon Sep 17 00:00:00 2001 From: jluehrs2 Date: Thu, 8 May 2008 20:56:05 -0500 Subject: duh... --- lib/App/Hiveminder/Command.pm | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lib/App/Hiveminder/Command.pm (limited to 'lib/App/Hiveminder/Command.pm') diff --git a/lib/App/Hiveminder/Command.pm b/lib/App/Hiveminder/Command.pm new file mode 100644 index 0000000..4d76dd1 --- /dev/null +++ b/lib/App/Hiveminder/Command.pm @@ -0,0 +1,13 @@ +#!/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) }, +); + +1; -- cgit v1.2.3-54-g00ecf