Skip to content

Commit 39ed651

Browse files
authored
Merge pull request #26 from shellrow/dev
Format code
2 parents dd88a79 + 9e90398 commit 39ed651

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ pub mod probe;
1717
pub mod protocol;
1818
pub mod scan;
1919
pub mod sys;
20+
pub mod tls;
2021
pub mod trace;
2122
pub mod util;
22-
pub mod tls;
2323
// CLI
2424
pub mod app;
2525
pub mod handler;

src/output.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ pub fn get_progress_style() -> ProgressStyle {
2929
ProgressStyle::default_bar()
3030
.template(
3131
"{spinner:.green} {msg} [{elapsed_precise}] [{bar:40.cyan/blue}] {pos}/{len} ({eta})",
32-
).unwrap()
32+
)
33+
.unwrap()
3334
.tick_strings(&["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏", "✓"])
3435
.progress_chars("#>-")
3536
}

0 commit comments

Comments
 (0)