Padded response body print statement

This commit is contained in:
Apoorv Dwivedi
2024-03-21 20:53:48 +05:30
parent f99a84375a
commit decd1d68eb
2 changed files with 28 additions and 28 deletions

View File

@ -74,7 +74,7 @@ fn main() {
let response_body = String::from_utf8_lossy(&data);
println!("Response body:{}", response_body);
println!("Response body: {}", response_body);
println!("Response code: {}", easy.response_code().unwrap());
}""";