feat(executor): add multi::Executor

This commit is contained in:
Michael Aaron Murphy 2023-01-27 03:58:39 +01:00 committed by Michael Murphy
parent cc21b9baa1
commit e4280dd381
3 changed files with 38 additions and 1 deletions

View file

@ -1,3 +1,10 @@
// 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"))]