Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
'Better' Recursion 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderMaxRanabel committed Jul 22, 2023
1 parent 1f59c5b commit 3d7a62e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ pub async fn discover(url: String, wordlist: String, depth: u8) -> Result<(), Bo
Some(newest_code) => newest_code.to_string(),
None => String::from("Unknown"),
};
println!("{} {} {} {}",depth.to_string().purple().italic() ,newest_result.cyan(), word, newest_target.magenta());
println!("{} {} {} {}", depth.to_string().purple().italic() ,newest_result.cyan(), word, newest_target.magenta());
}
} else {
continue;
Expand Down

0 comments on commit 3d7a62e

Please sign in to comment.