#!/usr/bin/perl

eval 'exec /usr/bin/perl  -S $0 ${1+"$@"}'
    if 0; # not running under some shell
use strict;
use warnings;
use FindBin qw($Bin);
use Path::Class;
use lib dir(dir($Bin)->parent, 'lib')->stringify;
use SVL::Command;

SVL::Command->dispatch();

