From 386de182d3e816c2f3d701465f36971cb708e858 Mon Sep 17 00:00:00 2001 From: Valmo Trindade Date: Wed, 18 Sep 2024 19:07:57 -0300 Subject: [PATCH] removed request templates on util file, don't think i will be using it --- src/util.rs | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/util.rs b/src/util.rs index d0cb5f2..1736d63 100644 --- a/src/util.rs +++ b/src/util.rs @@ -2,16 +2,4 @@ pub fn get_uuid() -> String { use uuid::Uuid; 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"; - } -} +} \ No newline at end of file