pub trait TimeBridge: Send + Sync {
// Provided methods
fn link_deadline(
&self,
_blueprint_id: &str,
_deadline_id: &str,
) -> Result<(), String> { ... }
fn temporal_context(&self, _topic: &str) -> Vec<String> { ... }
}