diff options
author | fxqnlr <[email protected]> | 2024-09-04 15:08:55 +0200 |
---|---|---|
committer | fxqnlr <[email protected]> | 2024-09-04 15:08:55 +0200 |
commit | 11e64fc7560de3cd0def718edf68c31e3dc8be72 (patch) | |
tree | f14ad1eb3d349e1f95e4d69c251e79ac85786a64 /src/data.rs | |
parent | 7a85cf311c85ab45c75098dae58b5ebf5fef60bc (diff) | |
download | modlist-11e64fc7560de3cd0def718edf68c31e3dc8be72.tar modlist-11e64fc7560de3cd0def718edf68c31e3dc8be72.tar.gz modlist-11e64fc7560de3cd0def718edf68c31e3dc8be72.zip |
move stuff around, remove lib.rs for overview
Diffstat (limited to 'src/data.rs')
-rw-r--r-- | src/data.rs | 13 |
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 @@ | |||
1 | pub mod list; | ||
2 | pub mod gameversion; | ||
3 | pub mod modloader; | ||
4 | pub mod project; | ||
5 | pub mod modification; | ||
6 | |||
7 | pub static STYLE_BAR_BYTE: &str = | ||
8 | "{spinner:.green}{wide_msg}{bytes}/{total_bytes} [{bar:.green/lime}]"; | ||
9 | pub static STYLE_BAR_POS: &str = " {wide_msg}{pos}/{len} [{bar:.green/lime}]"; | ||
10 | pub static STYLE_SPINNER: &str = "{spinner:.green}{wide_msg}"; | ||
11 | pub static STYLE_OPERATION: &str = " {wide_msg}"; | ||
12 | pub static STYLE_MESSAGE: &str = "{wide_msg}"; | ||
13 | pub static PROGRESS_CHARS: &str = "#>-"; | ||