Icarus models update #50

Merged
kdeng00 merged 12 commits from icarus_models-update into master 2025-04-10 21:04:58 -04:00
Showing only changes of commit 3012cfb94d - Show all commits
+2
View File
@@ -10,6 +10,7 @@ pub fn retrieve_url(api: &models::api::API, with_id: bool, id: &uuid::Uuid) -> S
fn retrieve_url_reg(api: &models::api::API) -> String {
let mut url: String = String::from(&api.url);
url += &String::from("/");
url += &String::from("api/");
url += &String::from(&api.version);
url += &String::from("/");
@@ -21,6 +22,7 @@ fn retrieve_url_reg(api: &models::api::API) -> String {
fn retrieve_url_with_id(api: &models::api::API, id: &uuid::Uuid) -> String {
let mut url: String = String::from(&api.url);
url += &String::from("/");
url += &String::from("api/");
url += &String::from(&api.version);
url += &String::from("/");