Adding code to the syncers module

This commit is contained in:
kdeng00
2024-05-06 20:43:04 -04:00
parent fdd25d9c8f
commit 115e8b1527
5 changed files with 85 additions and 3 deletions
+16
View File
@@ -1 +1,17 @@
use std::default::Default;
use crate::models;
pub struct RetrieveRecords {
pub api: models::api::API,
}
impl Default for RetrieveRecords {
fn default() -> Self {
RetrieveRecords {
api: models::api::API::default(),
}
}
}