seidr/src/settings.rs
Christina Sørensen 6d39190f69 feat(no-emoji): added no-emoji flag
Using atomics! In case we need threading in the future.

Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2023-07-03 16:22:48 +00:00

5 lines
148 B
Rust

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