Skip to content

Commit 3e2f34e

Browse files
committed
feat(smcp): simplify SmcpStorageProvider initialization using Default
1 parent cd36915 commit 3e2f34e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

orchestrator/core/src/infrastructure/storage/smcp_provider.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,14 @@ use crate::domain::storage::{
1515
};
1616
use async_trait::async_trait;
1717

18+
#[derive(Default)]
1819
pub struct SmcpStorageProvider {
1920
// node_id: String, // Kept for eventual gRPC routing
2021
}
2122

2223
impl SmcpStorageProvider {
2324
pub fn new() -> Self {
24-
Self {}
25+
Self::default()
2526
}
2627

2728
/// Helper to convert our internal path mapping back into metadata

0 commit comments

Comments
 (0)