Skip to content

Commit e89afec

Browse files
committed
🐛 fix: restore Arc import for service initialization
Re-add Arc import that was accidentally removed during clippy warning cleanup. Services like AttendanceService, AuthenService, ImService, and SearchService require Arc<Config> for initialization, causing compilation errors when building with --all-features. Fixes: - Arc::new() compilation errors in service initialization - Enables successful builds with both --no-default-features and --all-features
1 parent 0bfe41c commit e89afec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use std::time::Duration;
1+
use std::{sync::Arc, time::Duration};
22

33
use crate::core::{config::Config, constants::AppType};
44

0 commit comments

Comments
 (0)