#!/user/bin/perl

# PODNAME: lpan
# ABSTRACT: Execute commands against a local mirror

use strict;
use warnings;

use CPAN::Local::App;

my $app = CPAN::Local::App->new;
$app->run;


__END__
=pod

=head1 NAME

lpan - Execute commands against a local mirror

=head1 VERSION

version 0.006

=head1 DESCRIPTION

This script is the interface to commands provided by L<CPAN::Local::App>.
Run C<lpan commands> to see list of available commands.

=head1 AUTHOR

Peter Shangov <pshangov@yahoo.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Venda, Inc..

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

