2023-01-27 03:58:39 +01:00
|
|
|
// Copyright 2023 System76 <info@system76.com>
|
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "tokio")]
|
|
|
|
|
pub mod multi;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "tokio")]
|
2023-01-27 03:43:48 +01:00
|
|
|
pub mod single;
|
|
|
|
|
|
|
|
|
|
#[cfg(not(feature = "tokio"))]
|
|
|
|
|
pub type Default = iced::executor::Default;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "tokio")]
|
|
|
|
|
pub type Default = single::Executor;
|