brett plis

This commit is contained in:
Valmo Trindade
2024-09-12 02:17:52 -03:00
parent cb9ca9cd20
commit d3af4e064b
4 changed files with 56 additions and 30 deletions

View File

@@ -1,15 +1,17 @@
pub(crate) mod markers {
use log::info;
use crate::structs::Marker;
pub fn get(placeholder: String) -> &'static str {
info!("{}", placeholder);
return "not implemented yet";
}
pub fn post(placeholder: Vec<String>) -> &'static str {
for item in placeholder {
info!("Item: {}", item)
pub fn post(data: Vec<Marker>) -> &'static str {
for item in data {
info!("{} - {}", item.uid, item.name)
}
return "not implemented yet";