#!/usr/bin/env perl

use strict;
use warnings;
use utf8;
use App::GitHubWebhooks2Ikachan;

my ($opt, $argv) = App::GitHubWebhooks2Ikachan->parse_options(@ARGV);
my $g2i = App::GitHubWebhooks2Ikachan->new($opt);
$g2i->run(@$argv);

__END__

=encoding utf-8

=head1 NAME

githubwebhooks2ikachan - Starter script for L<App::GitHubWebhooks2Ikachan>

=head1 SYNOPSIS

    $ githubwebhooks2ikachan --ikachan_url=http://your-ikachan-server.com --port=12345

This script uses port 5555 as default.

=head1 DESCRIPTION

This script is the starter for L<App::GitHubWebhooks2Ikachan>.

=head1 LICENSE

Copyright (C) moznion.

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

=head1 AUTHOR

moznion E<lt>moznion@gmail.comE<gt>

=cut

