8 lines
156 B
Rust
8 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;
|