Remove print statement

This commit is contained in:
bitfl0wer 2023-05-28 23:08:05 +02:00
parent 7f6ed72068
commit 135782da9f
No known key found for this signature in database
GPG Key ID: 84BBB60DF895ABF2
1 changed files with 0 additions and 1 deletions

View File

@ -48,7 +48,6 @@ pub mod register {
let response_unwrap = response.unwrap(); let response_unwrap = response.unwrap();
let status = response_unwrap.status(); let status = response_unwrap.status();
let response_unwrap_text = response_unwrap.text().await.unwrap(); let response_unwrap_text = response_unwrap.text().await.unwrap();
println!("{}", response_unwrap_text);
let token = from_str::<Token>(&response_unwrap_text).unwrap(); let token = from_str::<Token>(&response_unwrap_text).unwrap();
let token = token.token; let token = token.token;
if status.is_client_error() { if status.is_client_error() {