#!/usr/bin/env perl
# PODNAME: aqhive
# ABSTRACT: The AquariumHive daemon [IN DEVELOPMENT]

$|=1;

use strict;
use warnings;
use App::AquariumHive;

my $aqhive = App::AquariumHive->new_with_options;
$aqhive->run;

exit 0;

__END__

=pod

=head1 NAME

aqhive - The AquariumHive daemon [IN DEVELOPMENT]

=head1 VERSION

version 0.002

=head1 DESCRIPTION

B<IN DEVELOPMENT, DO NOT USE YET>

See L<http://aquariumhive.com/> for now.

=head1 SUPPORT

IRC

  Join #AquariumHive on irc.freenode.net. Highlight Getty for fast reaction :).

Repository

  https://github.com/homehivelab/aquariumhive
  Pull request and additional contributors are welcome

Issue Tracker

  https://github.com/homehivelab/aquariumhive/issues

=head1 AUTHOR

Torsten Raudssus <torsten@raudss.us>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Torsten Raudssus.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
