#!/usr/bin/env perl

use strict;
use warnings;
use 5.010_001;

use version; our $VERSION = 'v0.3.0';

use App::Koyomi::Worker;

App::Koyomi::Worker->new(@ARGV)->run;

__END__

=encoding utf8

=head1 NAME

B<koyomi> - koyomi worker

=head1 SYNOPSIS

    ./koyomi

=head1 DESCRIPTION

This script is a job scheduler program like I<crond>.

I<Koyomi> executes scheduled jobs every minute and keeps running until someone stops it.

=head1 DOCUMENTATION

Full documentation is available on http://key-amb.github.io/App-Koyomi-Doc/ .

=head1 SEE ALSO

L<App::Koyomi>,
L<App::Koyomi::Worker>

=head1 AUTHORS

YASUTAKE Kiyoshi E<lt>yasutake.kiyoshi@gmail.comE<gt>

=head1 LICENSE

Copyright (C) 2015 YASUTAKE Kiyoshi.

This application is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.  That means either (a) the GNU General Public
License or (b) the Artistic License.

=cut

