Skip to content

Commit

Permalink
implement Default trait for AmanzonS3Builder
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorgan committed Dec 25, 2024
1 parent 1a2758c commit eb177ef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions integrations/object_store/src/s3_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ pub struct AmazonS3Builder {
builder: S3,
}

impl Default for AmazonS3Builder {
fn default() -> Self {
Self::new()
}
}

impl AmazonS3Builder {
pub fn new() -> Self {
AmazonS3Builder {
Expand Down

0 comments on commit eb177ef

Please sign in to comment.