The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Dancer ':syntax';
# info 'test: add to an action';
register_worker({ phase => 'main', driver => 'direct', title => 'cancelled' }, sub {
return (shift)->cancel('NOT OK: cancelled job at direct level.');
});
register_worker({ phase => 'main', driver => 'snmp', title => 'OK' }, sub {
return Status->done('OK: SNMP driver is successful.');
});
true;