Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowhatter committed Feb 4, 2025
1 parent 411e66a commit a60a864
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions commons/zenoh-shm/src/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
// ZettaScale Zenoh Team, <[email protected]>
//

use crate::{api::client_storage::GLOBAL_CLIENT_STORAGE, cleanup::CLEANUP, metadata::{storage::GLOBAL_METADATA_STORAGE, subscription::GLOBAL_METADATA_SUBSCRIPTION}, watchdog::{confirmator::GLOBAL_CONFIRMATOR, validator::GLOBAL_VALIDATOR}};
use crate::{
api::client_storage::GLOBAL_CLIENT_STORAGE,
cleanup::CLEANUP,
metadata::{storage::GLOBAL_METADATA_STORAGE, subscription::GLOBAL_METADATA_SUBSCRIPTION},
watchdog::{confirmator::GLOBAL_CONFIRMATOR, validator::GLOBAL_VALIDATOR},
};

pub fn init() {
let _ = CLEANUP.write();
Expand All @@ -21,4 +26,4 @@ pub fn init() {
let _ = GLOBAL_METADATA_SUBSCRIPTION.write();
let _ = GLOBAL_CONFIRMATOR.write();
let _ = GLOBAL_VALIDATOR.write();
}
}

0 comments on commit a60a864

Please sign in to comment.