bellhop-hook-jenkins 0.2.0

A bellhop hook that starts a Jenkins job
Documentation

An implementation of [bellhop::hooks::Hook] that starts a Jenkins job when leases are created or released, or when they're about to expire.

Routes

Provides no routes.

Catchers

Provides no catchers.

Configuration

None yet :(

Example

use bellhop::Bellhop;
use bellhop_hook_jenkins::Jenkins;

fn main() {
Bellhop::default()
.hook(Jenkins)
.start()
}