We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd36915 commit 3e2f34eCopy full SHA for 3e2f34e
orchestrator/core/src/infrastructure/storage/smcp_provider.rs
@@ -15,13 +15,14 @@ use crate::domain::storage::{
15
};
16
use async_trait::async_trait;
17
18
+#[derive(Default)]
19
pub struct SmcpStorageProvider {
20
// node_id: String, // Kept for eventual gRPC routing
21
}
22
23
impl SmcpStorageProvider {
24
pub fn new() -> Self {
- Self {}
25
+ Self::default()
26
27
28
/// Helper to convert our internal path mapping back into metadata
0 commit comments