diff options
author | FxQnLr <[email protected]> | 2023-11-10 12:23:31 +0100 |
---|---|---|
committer | FxQnLr <[email protected]> | 2023-11-10 12:23:31 +0100 |
commit | 9957da9b182ca209ff8caa8f670d3bd7eff154bb (patch) | |
tree | ef5bd866387661cdbfe885e3c36a7f0f386404e2 /src/main.rs | |
parent | 344af3ff7c9493b4e2c6eee134b9b341eaabf736 (diff) | |
download | webol-cli-9957da9b182ca209ff8caa8f670d3bd7eff154bb.tar webol-cli-9957da9b182ca209ff8caa8f670d3bd7eff154bb.tar.gz webol-cli-9957da9b182ca209ff8caa8f670d3bd7eff154bb.zip |
add basic eta
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 d7c985f..204e671 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -12,9 +12,9 @@ mod config; | |||
12 | mod error; | 12 | mod error; |
13 | mod requests; | 13 | mod requests; |
14 | 14 | ||
15 | static OVERVIEW_STYLE: &str = "{spinner:.green} {wide_msg}({elapsed})"; | 15 | static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed}{wide_msg}"; |
16 | static OVERVIEW_ERROR: &str = "✗ {wide_msg}({elapsed})"; | 16 | static OVERVIEW_ERROR: &str = "✗ ({elapsed}) {wide_msg}"; |
17 | static OVERVIEW_DONE: &str = "✓ {wide_msg}({elapsed})"; | 17 | static OVERVIEW_DONE: &str = "✓ ({elapsed}) {wide_msg}"; |
18 | static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; | 18 | static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; |
19 | static DONE_STYLE: &str = " ✓ {wide_msg}"; | 19 | static DONE_STYLE: &str = " ✓ {wide_msg}"; |
20 | static ERROR_STYLE: &str = " ✗ {wide_msg}"; | 20 | static ERROR_STYLE: &str = " ✗ {wide_msg}"; |