The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# vim: ft=perl
use Ubic::Service::Common;

Ubic::Service::Common->new({
    start => sub {
        die "oops, this service can't start";
    },
    stop => sub {
        die "oops, this service can't stop";
    },
    status => sub {
        return 'broken';
    },
});