summaryrefslogtreecommitdiff
path: root/util/multi.pl
blob: 1ad92ef43835c7959804dcd16784ca6cd2718b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/perl

use strict;
use warnings;
use Cwd 'abs_path';

my $ROOT;
BEGIN { ($ROOT = abs_path $0) =~ s{/util/multi\.pl$}{} }

use lib $ROOT.'/lib';
use Multi::Core;

Multi::Core->run();