Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
youyuanwu committed Sep 7, 2024
1 parent 5dfefef commit e137059
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions crates/libs/core/src/client/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ pub struct FabricClientBuilder {
client_role: ClientRole,
}

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

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

0 comments on commit e137059

Please sign in to comment.