refactor: improve code readability and consistency across multiple files

This commit is contained in:
asepharyana
2026-07-20 12:02:50 +07:00
parent 4ced6681c2
commit 1ec2aa136a
17 changed files with 117 additions and 41 deletions
@@ -14,6 +14,15 @@ impl LiveHiveMind {
nodes: Mutex::new(HashMap::new()),
}
}
}
impl Default for LiveHiveMind {
fn default() -> Self {
Self::new()
}
}
impl LiveHiveMind {
pub fn set_status(&self, agent_id: &str, status: &str) {
if let Ok(mut guard) = self.nodes.lock() {