summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorFxQnLr <[email protected]>2024-02-25 20:50:50 +0100
committerFxQnLr <[email protected]>2024-02-25 20:50:50 +0100
commit3a2dc1f2741f7bf4d72c1cbe0fd1993af157ceaa (patch)
treeda0e6f0b8d054a48552b6eeb4973e77a8b9aa920 /src/main.rs
parenta192e9baca9a14beaa9f87c27a63cff96aa41c94 (diff)
downloadwebol-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.rs6
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;
16mod error; 16mod error;
17mod requests; 17mod requests;
18 18
19static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed}{wide_msg}"; 19static OVERVIEW_STYLE: &str = "{spinner:.green} ({elapsed_precise}{wide_msg}";
20static OVERVIEW_ERROR: &str = "✗ ({elapsed}) {wide_msg}"; 20static OVERVIEW_ERROR: &str = "✗ ({elapsed_precise}) {wide_msg}";
21static OVERVIEW_DONE: &str = "✓ ({elapsed}) {wide_msg}"; 21static OVERVIEW_DONE: &str = "✓ ({elapsed_precise}) {wide_msg}";
22static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}"; 22static DEFAULT_STYLE: &str = " {spinner:.green} {wide_msg}";
23static DONE_STYLE: &str = " ✓ {wide_msg}"; 23static DONE_STYLE: &str = " ✓ {wide_msg}";
24static ERROR_STYLE: &str = " ✗ {wide_msg}"; 24static ERROR_STYLE: &str = " ✗ {wide_msg}";