summaryrefslogtreecommitdiff
path: root/src/data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.rs')
-rw-r--r--src/data.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/data.rs b/src/data.rs
new file mode 100644
index 0000000..cff0f47
--- /dev/null
+++ b/src/data.rs
@@ -0,0 +1,13 @@
1pub mod list;
2pub mod gameversion;
3pub mod modloader;
4pub mod project;
5pub mod modification;
6
7pub static STYLE_BAR_BYTE: &str =
8 "{spinner:.green}{wide_msg}{bytes}/{total_bytes} [{bar:.green/lime}]";
9pub static STYLE_BAR_POS: &str = " {wide_msg}{pos}/{len} [{bar:.green/lime}]";
10pub static STYLE_SPINNER: &str = "{spinner:.green}{wide_msg}";
11pub static STYLE_OPERATION: &str = " {wide_msg}";
12pub static STYLE_MESSAGE: &str = "{wide_msg}";
13pub static PROGRESS_CHARS: &str = "#>-";