pub trait HookRunner: Send + Sync {
// Required method
fn run(
&self,
hooks: &[HookCommand],
ctx: &HookContext,
) -> Result<(), ReleaseError>;
}Expand description
Runs lifecycle hooks at various points in the release process.