removed request templates on util file, don't think i will be using it

This commit is contained in:
Valmo Trindade
2024-09-18 19:07:57 -03:00
parent def8a15f02
commit 386de182d3

View File

@@ -2,16 +2,4 @@ pub fn get_uuid() -> String {
use uuid::Uuid; use uuid::Uuid;
Uuid::new_v4().to_string() Uuid::new_v4().to_string()
} }
mod sync_request {
pub fn get(address: String, token: String) -> String {
let par = address + &token;
return par;
}
pub fn post(data: String) -> &'static str {
return "not implemented yet";
}
}