Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
Phill030 committed Sep 16, 2023
1 parent 1cbabc9 commit 6df5562
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ fn opts() -> OptionParser<Opt> {
.argument::<usize>("usize")
.fallback(8);

let rl_max_requests = long("max_requests").help("Change the amount of requests a user can send before getting rate-limited by the server").argument::<u32>("u32").fallback(100);
let rl_max_requests = long("max_requests").
help("Change the amount of requests a user can send before getting rate-limited by the server").
argument::<u32>("u32").
fallback(100);

let rl_reset_duration = long("reset_duration")
.help("Change the duration for the interval in which the rate-limit list get's cleared (In seconds)")
Expand Down

0 comments on commit 6df5562

Please sign in to comment.