#!/usr/bin/env perl
# PODNAME: twitch
# ABSTRACT: command line tool to use twitch

use App::Twitch;

my $twitch = App::Twitch->new_with_options();
POE::Kernel->run;



=pod

=head1 NAME

twitch - command line tool to use twitch

=head1 VERSION

version 0.003

=head1 SYNOPSIS

  twitch
    --consumer_key 1a2b3c4d --consumer_secret 1a2b3c4d \
    --access_token 1a2b3c4d --access_token_secret 1a2b3c4d \
    --bitly_user username --bitly_apikey 1a2b3c4d \
    --rss_file rss.txt --keywords_file keyword.txt 

=head1 SEE ALSO

=over 4

=item *

L<App::Twitch>

=back

=head1 AUTHOR

Torsten Raudssus <torsten@raudssus.de>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2010 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


__END__

