We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cba983e commit 062224bCopy full SHA for 062224b
src/sinks/azure_common/mod.rs
@@ -1,3 +1,3 @@
1
-pub(crate) mod config;
2
-pub(crate) mod service;
3
-pub(crate) mod sink;
+pub mod config;
+pub mod service;
+pub mod sink;
src/sinks/azure_common/service.rs
@@ -12,7 +12,7 @@ use tracing::Instrument;
12
use crate::sinks::azure_common::config::{AzureBlobRequest, AzureBlobResponse};
13
14
#[derive(Clone)]
15
-pub(crate) struct AzureBlobService {
+pub struct AzureBlobService {
16
client: Arc<ContainerClient>,
17
}
18
src/sinks/s3_common/mod.rs
@@ -1,4 +1,4 @@
-pub(crate) mod partitioner;
4
+pub mod partitioner;
0 commit comments