diff options
author | FxQnLr <[email protected]> | 2024-02-25 20:50:50 +0100 |
---|---|---|
committer | FxQnLr <[email protected]> | 2024-02-25 20:50:50 +0100 |
commit | 3a2dc1f2741f7bf4d72c1cbe0fd1993af157ceaa (patch) | |
tree | da0e6f0b8d054a48552b6eeb4973e77a8b9aa920 /src/main.rs | |
parent | a192e9baca9a14beaa9f87c27a63cff96aa41c94 (diff) | |
download | webol-cli-3a2dc1f2741f7bf4d72c1cbe0fd1993af157ceaa.tar webol-cli-3a2dc1f2741f7bf4d72c1cbe0fd1993af157ceaa.tar.gz webol-cli-3a2dc1f2741f7bf4d72c1cbe0fd1993af157ceaa.zip |
Closes #5. Eta works
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index d76341f..5a0931d 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -16,9 +16,9 @@ mod config; | |||
16 | mod error; | 16 | mod error; |
17 | mod requests; | 17 | mod requests; |
18 | 18 | ||
19 | static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed}{wide_msg}"; | 19 | static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed_precise}{wide_msg}"; |
20 | static OVERVIEW_ERROR: &str = "✗ ({elapsed}) {wide_msg}"; | 20 | static OVERVIEW_ERROR: &str = "✗ ({elapsed_precise}) {wide_msg}"; |
21 | static OVERVIEW_DONE: &str = "✓ ({elapsed}) {wide_msg}"; | 21 | static OVERVIEW_DONE: &str = "✓ ({elapsed_precise}) {wide_msg}"; |
22 | static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; | 22 | static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; |
23 | static DONE_STYLE: &str = " ✓ {wide_msg}"; | 23 | static DONE_STYLE: &str = " ✓ {wide_msg}"; |
24 | static ERROR_STYLE: &str = " ✗ {wide_msg}"; | 24 | static ERROR_STYLE: &str = " ✗ {wide_msg}"; |