Skip to content

Commit 5f0eeff

Browse files
committed
🎨 style: format conditional Arc import for better readability
Break long cfg attribute into multiple lines following Rust formatting standards. Changes: - Split #[cfg(any(...))] into multi-line format - Reorder imports to follow standard convention
1 parent ba53e82 commit 5f0eeff

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/client/mod.rs

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
use std::time::Duration;
2-
#[cfg(any(feature = "attendance", feature = "authentication", feature = "im", feature = "search", feature = "cloud-docs"))]
1+
#[cfg(any(
2+
feature = "attendance",
3+
feature = "authentication",
4+
feature = "im",
5+
feature = "search",
6+
feature = "cloud-docs"
7+
))]
38
use std::sync::Arc;
9+
use std::time::Duration;
410

511
use crate::core::{config::Config, constants::AppType};
612

0 commit comments

Comments
 (0)