/// Linux type definitions.
/// Windows type definitions.
/// Current platform type definitions.
/// This module re-exports the platform-specific modules based on the target OS.
/// It allows for easier access to the current platform's definitions without needing to
/// conditionally import the specific module in other parts of the codebase.
/// The `Current` module will point to either `linux` or `windows` based on the target OS.
pub use windows as Current;
pub use linux as Current;