From d7f35690e3e70373a466eecc595f2924e321edee Mon Sep 17 00:00:00 2001 From: Priec Date: Mon, 19 Jan 2026 13:10:14 +0100 Subject: [PATCH] working with strings to register a page, needs redesign --- src/orchestrator/core.rs | 4 ++++ 1 file changed, 4 insertions(+) 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() + } }