1 2 3 4 5
use crate::HookRegistry; pub trait Plugin: Send + Sync + 'static { fn register(self, hooks: &mut HookRegistry); }