foxtive_ntex/
lib.rs

1use std::sync::OnceLock;
2
3pub mod contracts;
4pub mod enums;
5mod error;
6pub mod helpers;
7pub mod http;
8mod setup;
9
10pub use setup::state::FoxtiveNtexState;
11
12pub static FOXTIVE_NTEX: OnceLock<FoxtiveNtexState> = OnceLock::new();
13
14pub use crate::helpers::once_lock::FoxtiveNtexExt;