The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

# PODNAME: yars
# ABSTRACT: Yet Another RESTful-Archive Service
our $VERSION = '1.00'; # VERSION


use Yars;
use Clustericious::Commands;

use strict;
use warnings;

$ENV{MOJO_APP} ||= 'Yars';

&main;

sub main {
    my $app = Yars->new();
    $app = Clustericious::Commands->start;
    $app;
}



__END__
=pod

=head1 NAME

yars - Yet Another RESTful-Archive Service

=head1 VERSION

version 1.00

=head1 SEE ALSO

L<Yars>, L<Yars::Client>, L<yarsclient>

=head1 AUTHOR

original author: Marty Brandon

current maintainer: Graham Ollis <plicease@cpan.org>

contributors:

Brian Duggan

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by NASA GSFC.

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