Skip to content

Commit

Permalink
chore(deps): Export more common bits for components
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceg committed Jun 28, 2023
1 parent fdf02d9 commit a64f950
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
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;

0 comments on commit a64f950

Please sign in to comment.