mirror of
https://github.com/duncs/clusterssh.git
synced 2025-04-21 17:09:06 +00:00

Start process to convert to using Dist::Zilla to make life easier for both the author and for users
13 lines
219 B
Perl
Executable file
13 lines
219 B
Perl
Executable file
#!/usr/bin/env perl
|
|
use 5.008.004;
|
|
use strict;
|
|
use warnings;
|
|
|
|
use FindBin;
|
|
use lib $FindBin::Bin. '/../lib';
|
|
use lib $FindBin::Bin. '/../lib/perl5';
|
|
use App::ClusterSSH;
|
|
|
|
my $app = App::ClusterSSH->new();
|
|
|
|
$app->run();
|