seidr/src/settings.rs

6 lines
148 B
Rust
Raw Normal View History

use std::sync::atomic::AtomicBool;
pub static QUIET: AtomicBool = AtomicBool::new(false);
pub static EMOJIS: AtomicBool = AtomicBool::new(false);