foxtive_ntex/lib.rs
1use std::sync::OnceLock;
2
3pub mod contracts;
4pub mod enums;
5mod error;
6pub mod ext;
7pub mod helpers;
8pub mod http;
9mod setup;
10
11pub use setup::state::FoxtiveNtexState;
12
13pub static FOXTIVE_NTEX: OnceLock<FoxtiveNtexState> = OnceLock::new();
14
15pub use ext::app_state::FoxtiveNtexExt;