Skip to content

Commit b0f61c7

Browse files
committed
fix: fix clippy issue
1 parent 5560d0f commit b0f61c7

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/resp/decode.rs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
// empty file

src/resp/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,12 @@ impl RespMap {
135135
}
136136
}
137137

138+
impl Default for RespMap {
139+
fn default() -> Self {
140+
RespMap::new()
141+
}
142+
}
143+
138144
impl RespSet {
139145
pub fn new(s: impl Into<Vec<RespFrame>>) -> Self {
140146
RespSet(s.into())

0 commit comments

Comments
 (0)