libcosmic-yoda/src/executor/mod.rs

15 lines
308 B
Rust
Raw Normal View History

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")]
pub mod single;
#[cfg(not(feature = "tokio"))]
pub type Default = iced::executor::Default;
#[cfg(feature = "tokio")]
pub type Default = single::Executor;