improvements to netcode and new functionality

This commit is contained in:
2025-01-19 15:57:19 +01:00
parent 765fca635a
commit 24f8a35162
4 changed files with 65 additions and 46 deletions

View File

@@ -6,9 +6,7 @@ mod serial;
fn main() {
let data_file = std::path::Path::new("data.json");
let data = json::get_json(data_file);
let req;
let dt;
(req, dt) = curl::startup(&data);
serial::read_messages(req, &dt);
let (req, dt) = curl::startup(&data);
serial::read_messages(req, dt);
}