Skip to content

Commit 062224b

Browse files
authored
chore(deps): Export more common bits for components (vectordotdev#17788)
<!-- **Your PR title must conform to the conventional commit spec!** <type>(<scope>)!: <description> * `type` = chore, enhancement, feat, fix, docs * `!` = OPTIONAL: signals a breaking change * `scope` = Optional when `type` is "chore" or "docs", available scopes https://github.com/vectordotdev/vector/blob/master/.github/semantic.yml#L20 * `description` = short description of the change Examples: * enhancement(file source): Add `sort` option to sort discovered files * feat(new source): Initial `statsd` source * fix(file source): Fix a bug discovering new files * chore(external docs): Clarify `batch_size` option -->
1 parent cba983e commit 062224b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

src/sinks/azure_common/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pub(crate) mod config;
2-
pub(crate) mod service;
3-
pub(crate) mod sink;
1+
pub mod config;
2+
pub mod service;
3+
pub mod sink;

src/sinks/azure_common/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use tracing::Instrument;
1212
use crate::sinks::azure_common::config::{AzureBlobRequest, AzureBlobResponse};
1313

1414
#[derive(Clone)]
15-
pub(crate) struct AzureBlobService {
15+
pub struct AzureBlobService {
1616
client: Arc<ContainerClient>,
1717
}
1818

src/sinks/s3_common/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
pub(crate) mod config;
2-
pub(crate) mod partitioner;
3-
pub(crate) mod service;
4-
pub(crate) mod sink;
1+
pub mod config;
2+
pub mod partitioner;
3+
pub mod service;
4+
pub mod sink;

0 commit comments

Comments
 (0)