#!/usr/bin/env perl

use strict;
use warnings;
use App::MPDJ;

my $app = App::MPDJ->new();
$app->parse_options(@ARGV);
$app->execute() or exit 1;
