libcosmic/src/executor/mod.rs
2023-01-30 21:57:24 +01:00

7 lines
156 B
Rust

pub mod single;
#[cfg(not(feature = "tokio"))]
pub type Default = iced::executor::Default;
#[cfg(feature = "tokio")]
pub type Default = single::Executor;