Skip to content

Commit

Permalink
Moved library to a new name.
Browse files Browse the repository at this point in the history
  • Loading branch information
davorg committed Feb 15, 2017
1 parent dbfa54b commit ceb50f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gettemp
Expand Up @@ -6,13 +6,13 @@ use 5.010;

use lib 'lib';
use Data::Dumper;
use Hive;
use WebService::Hive;

die "Please give your Hive username and password\n" if @ARGV < 2;

my ($user, $pass) = @ARGV;

my $hive = Hive->new({
my $hive = WebService::Hive->new({
username => $user,
password => $pass,
});
Expand Down
2 changes: 1 addition & 1 deletion lib/Hive.pm → lib/WebService/Hive.pm
@@ -1,4 +1,4 @@
package Hive;
package WebService::Hive;

use Moose;
use Moose::Util::TypeConstraints;
Expand Down

0 comments on commit ceb50f3

Please sign in to comment.