1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: MIT
// Copyright 2023 IROX Contributors

//!
//! Multithreading and Asynchronous programming tools and utilities
//!

#![forbid(unsafe_code)]

pub use current::*;
pub use single::*;
pub use task::*;

mod current;
mod single;
mod task;

pub trait Executor {}