feat: udpate fetch-rs

This commit is contained in:
2023-06-04 14:20:40 +08:00
parent 8aba71a72b
commit 38b8fbe37f
2 changed files with 7 additions and 7 deletions

View File

@@ -22,12 +22,12 @@ let response = fetch(
"https://hatter.ink/util/print_request.action",
&FetchOptions {
method: FetchMethod::Post,
headers: Some(vec![
headers: vec![
FetchHeader {
key: "content-type".to_string(),
value: "application/json".to_string(),
}
]),
],
body: Some("{}".as_bytes().to_vec()),
..Default::default()
})?;