1 2 3 4 5 6 7 8
use crate::types::state::State; use std::cell::RefCell; pub mod services; thread_local! { pub(crate) static STATE: RefCell<State> = RefCell::default(); }