//! Thread Local Storage (TLS) management.
//!
//! This module provides support for both static and dynamic TLS models.
//! It includes the `TlsResolver` trait for integrating with the environment's
//! thread management system and a default implementation for standard setups.
pub use TlsDescDynamicArg;
pub use ;
pub use DefaultTlsResolver;
pub use TlsResolver;