#!/usr/bin/perl
#
# This file is part of WaitReSS
#
# This software is copyright (c) 2013 by Jerome Quelin.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#

use 5.016;
use warnings;

# PODNAME:  waitress
# ABSTRACT: Manage WaitReSS from command-line

use Find::Lib '../lib';
use WaitReSS::App;

WaitReSS::App->run;

exit;

__END__

=pod

=head1 NAME

waitress - Manage WaitReSS from command-line

=head1 VERSION

version 0.001

=head1 SYNOPSIS

    # for help purposes
    waitress commands
    waitress help
    waitress help subcommand

=head1 DESCRIPTION

This script allows to control feeds from within the command-line. 
It is providing various subcommands -
which list is available with C<waitress commands>. Each of the commands
provides some help when running C<waitress help subcommand>.

=head1 AUTHOR

Jerome Quelin <jquelin@gmail.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Jerome Quelin.

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
