diff --git a/src/orchestrator/core.rs b/src/orchestrator/core.rs index 0b3e7a2..69db88f 100644 --- a/src/orchestrator/core.rs +++ b/src/orchestrator/core.rs @@ -228,4 +228,8 @@ where pub fn start(&mut self) { self.running = true; } + + pub fn current_id(&self) -> Option<&String> { + self.router.current_id() + } }