6d39190f69
Using atomics! In case we need threading in the future. Signed-off-by: Christina Sørensen <christina@cafkafk.com>
5 lines
148 B
Rust
5 lines
148 B
Rust
use std::sync::atomic::AtomicBool;
|
|
|
|
pub static QUIET: AtomicBool = AtomicBool::new(false);
|
|
|
|
pub static EMOJIS: AtomicBool = AtomicBool::new(false);
|