mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 20:03:28 +00:00
added get uuid function on utils
This commit is contained in:
23
src/util.rs
Normal file
23
src/util.rs
Normal file
@@ -0,0 +1,23 @@
|
||||
pub fn get_uuid() -> String {
|
||||
use uuid::Uuid;
|
||||
|
||||
Uuid::new_v4().to_string()
|
||||
}
|
||||
|
||||
pub(crate) mod data_parsing {
|
||||
|
||||
}
|
||||
|
||||
mod request {
|
||||
pub fn post(data: String) -> &'static str {
|
||||
return "not implemented yet";
|
||||
}
|
||||
|
||||
pub fn get(data: String) -> &'static str {
|
||||
return "not implemented yet";
|
||||
}
|
||||
|
||||
pub fn delete(data: String) -> &'static str {
|
||||
return "not implemented yet";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user