You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
516 B
13 lines
516 B
pub const HOST: &str = "127.0.0.1"; |
|
pub const PORT: u16 = 8080; |
|
pub const LOG_LEVEL: &str = "info"; |
|
pub const IMPORT_DICT_NAME: &str = ""; |
|
pub const IMPORT_DICT_PATH: &str = ""; |
|
|
|
use const_format::formatcp; |
|
|
|
pub const HELP_PORT: &str = formatcp!("Override Port [default: {}]", PORT); |
|
pub const HELP_LOG: &str = formatcp!("Override Log Level [default: {}]", LOG_LEVEL); |
|
|
|
pub const HELP_IMPORT_DICT_NAME: &str = formatcp!("Dictionary name"); |
|
pub const HELP_IMPORT_DICT_INPUT: &str = formatcp!("Dictionary file path");
|
|
|