telar_platform_desktop/lib.rs
1#[cfg(target_os = "linux")]
2mod color_scheme;
3mod paths;
4pub mod platform;
5
6pub use paths::DesktopPathsProvider;
7pub use platform::{WinitPlatform, request_dynamic_surface};
8// Re-exported from the shared winit backend so desktop consumers get the runner and its window type from one crate.
9pub use platform_winit::WinitWindow;