mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-13 08:36:54 +00:00
831cb0b6d9
* improve code for notify * fix * cargo fmt * improve code and create `DEFAULT_DELIMITER` * fix * fix * improve code for notify * fmt * Update crates/notify/src/registry.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update crates/notify/src/factory.rs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix cllipy --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
8 lines
270 B
Rust
8 lines
270 B
Rust
pub const DEFAULT_DELIMITER: &str = "_";
|
|
pub const ENV_PREFIX: &str = "RUSTFS_";
|
|
pub const ENV_WORD_DELIMITER: &str = "_";
|
|
|
|
/// Medium-drawn lines separator
|
|
/// This is used to separate words in environment variable names.
|
|
pub const ENV_WORD_DELIMITER_DASH: &str = "-";
|