code beutifying
This commit is contained in:
parent
64cf89b185
commit
244fc759ea
1 changed files with 8 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
use serde::Serialize;
|
||||
use reqwest::Client;
|
||||
use serde::Serialize;
|
||||
|
||||
#[derive(Serialize)]
|
||||
pub struct RadioData {
|
||||
|
@ -12,5 +12,10 @@ pub struct RadioData {
|
|||
|
||||
#[tokio::main]
|
||||
pub async fn upload(url: &str, radio_data: &RadioData) {
|
||||
let _res = Client::new().post(url).json(&radio_data).send().await.unwrap();
|
||||
let _res = Client::new()
|
||||
.post(url)
|
||||
.json(&radio_data)
|
||||
.send()
|
||||
.await
|
||||
.unwrap();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue