The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Web::JenkinsNotification -

SYNOPSIS

    use Web::JenkinsNotification;

    builder {
        mount "/jenkins" => builder {
            enable "+Web::JenkinsNotification";
            sub { 
                my $env = shift;
                my $notification = $env->{ 'jenkins.notification' };  # Jenkins::Notification

            };
        };

        mount "/jenkins" => Web::JenkinsNotification->new({ on_notify => sub {
            my ($env,$payload) = @_;
            
        }})->to_app;
    };

DESCRIPTION

Web::JenkinsNotification is

AUTHOR

Yo-An Lin <cornelius.howl {at} gmail.com>

SEE ALSO

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.