summaryrefslogtreecommitdiff
path: root/src/data.rs
blob: cff0f474b29c4f8e606d8da32a079622c2923d4e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod list;
pub mod gameversion;
pub mod modloader;
pub mod project;
pub mod modification;

pub static STYLE_BAR_BYTE: &str =
    "{spinner:.green}{wide_msg}{bytes}/{total_bytes} [{bar:.green/lime}]";
pub static STYLE_BAR_POS: &str = " {wide_msg}{pos}/{len} [{bar:.green/lime}]";
pub static STYLE_SPINNER: &str = "{spinner:.green}{wide_msg}";
pub static STYLE_OPERATION: &str = " {wide_msg}";
pub static STYLE_MESSAGE: &str = "{wide_msg}";
pub static PROGRESS_CHARS: &str = "#>-";