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
+14
View File
@@ -1 +1,15 @@
use std::default::Default;
use crate::models;
pub struct Download{
pub api: models::api::API,
}
impl Default for Download {
fn default() -> Self {
Download {
api: models::api::API::default(),
}
}
}