fix: println

This commit is contained in:
2023-06-17 15:15:16 +02:00
parent b1613686d7
commit 993ef577be

View File

@ -20,7 +20,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
}"#) }"#)
.unwrap(); .unwrap();
println!("{}", request); println!("{}", response.text()?);
Ok(()) Ok(())
} }