Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/sinks/azure_common/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
pub(crate) mod config;
pub(crate) mod service;
pub(crate) mod sink;
pub mod config;
pub mod service;
pub mod sink;
2 changes: 1 addition & 1 deletion src/sinks/azure_common/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use tracing::Instrument;
use crate::sinks::azure_common::config::{AzureBlobRequest, AzureBlobResponse};

#[derive(Clone)]
pub(crate) struct AzureBlobService {
pub struct AzureBlobService {
client: Arc<ContainerClient>,
}

Expand Down
8 changes: 4 additions & 4 deletions src/sinks/s3_common/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pub(crate) mod config;
pub(crate) mod partitioner;
pub(crate) mod service;
pub(crate) mod sink;
pub mod config;
pub mod partitioner;
pub mod service;
pub mod sink;