#!perl
use lib qw(./lib);
use App::rdapper;
use strict;

eval {
    App::rdapper->main(@ARGV);
    exit(0);
};

exit(1);
