More cleanup

This commit is contained in:
kdeng00
2024-06-15 11:24:55 -04:00
parent be107cc0ad
commit 52c22d8319
9 changed files with 19 additions and 87 deletions
+3 -3
View File
@@ -12,9 +12,9 @@ pub struct API {
impl Default for API {
fn default() -> Self {
API {
url: String::from(""),
endpoint: String::from(""),
version: String::from(""),
url: String::new(),
endpoint: String::new(),
version: String::new(),
}
}
}