clrigctl/src/cloudlog.rs
2023-11-29 20:00:05 +01:00

21 lines
406 B
Rust

use reqwest::Client;
use serde::Serialize;
#[derive(Serialize)]
pub struct RadioData {
pub key: String,
pub radio: String,
pub frequency: String,
pub mode: String,
pub power: String,
}
#[tokio::main]
pub async fn upload(url: &str, radio_data: &RadioData) {
let _res = Client::new()
.post(url)
.json(&radio_data)
.send()
.await
.unwrap();
}