diff --git a/src/syncers/retrieve_records.rs b/src/syncers/retrieve_records.rs index 0a05235..96752c0 100644 --- a/src/syncers/retrieve_records.rs +++ b/src/syncers/retrieve_records.rs @@ -13,7 +13,7 @@ mod response { #[derive(Debug, serde::Deserialize)] pub struct Response { pub message: String, - pub data: Vec + pub data: Vec, } } } @@ -44,7 +44,7 @@ impl RetrieveRecords { Ok(parsed) => { println!("Response message: {:?}", parsed.message); Ok(parsed.data) - } + } Err(err) => Err(std::io::Error::other(err.to_string())), } }