summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorFxQnLr <[email protected]>2023-11-10 12:23:31 +0100
committerFxQnLr <[email protected]>2023-11-10 12:23:31 +0100
commit9957da9b182ca209ff8caa8f670d3bd7eff154bb (patch)
treeef5bd866387661cdbfe885e3c36a7f0f386404e2 /src/main.rs
parent344af3ff7c9493b4e2c6eee134b9b341eaabf736 (diff)
downloadwebol-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.rs6
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;
12mod error; 12mod error;
13mod requests; 13mod requests;
14 14
15static OVERVIEW_STYLE: &str = "{spinner:.green} {wide_msg}({elapsed})"; 15static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed}{wide_msg}";
16static OVERVIEW_ERROR: &str = "✗ {wide_msg}({elapsed})"; 16static OVERVIEW_ERROR: &str = "✗ ({elapsed}) {wide_msg}";
17static OVERVIEW_DONE: &str = "✓ {wide_msg}({elapsed})"; 17static OVERVIEW_DONE: &str = "✓ ({elapsed}) {wide_msg}";
18static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; 18static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}";
19static DONE_STYLE: &str = " ✓ {wide_msg}"; 19static DONE_STYLE: &str = " ✓ {wide_msg}";
20static ERROR_STYLE: &str = " ✗ {wide_msg}"; 20static ERROR_STYLE: &str = " ✗ {wide_msg}";