#!/usr/bin/env perl

#  PODNAME: App::assh
# ABSTRACT: A wrapper around autossh.

use v5.10;
use strict;
use warnings;

use FindBin;

use lib "$FindBin::Bin/../lib";

use App::assh;

my $app = App::assh->new;
$app->run(@ARGV);

__END__

=pod

=encoding utf-8

=head1 NAME

App::assh - A wrapper around autossh.

=head1 VERSION

version 1.1.0

=head1 AUTHOR

DBR <dbr@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2013 by DBR.

This is free software, licensed under:

  DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE, Version 2, December 2004

=cut
