#!/usr/bin/perl -w

use strict;
use warnings;

BEGIN {

    require Carp;

    $SIG{ __DIE__ } = \&Carp::confess;
};

use Salvation::AnyNotify ();

Salvation::AnyNotify
    -> new()
    -> monitor()
;

exit 0;

__END__
