Advance Red Bear runtime services and tools

This commit is contained in:
2026-04-20 18:37:35 +01:00
parent 2b3b592dab
commit f3e6b09811
24 changed files with 1362 additions and 357 deletions
@@ -10,6 +10,7 @@ pub struct SessionRuntime {
pub leader: u32,
pub state: String,
pub active: bool,
pub preparing_for_shutdown: bool,
}
impl Default for SessionRuntime {
@@ -23,6 +24,7 @@ impl Default for SessionRuntime {
leader: std::process::id(),
state: String::from("online"),
active: true,
preparing_for_shutdown: false,
}
}
}