futures: move select* and join* to separate modules.

This commit is contained in:
Dario Nieuwenhuis
2022-08-28 22:57:35 +02:00
parent 2a0df652f3
commit 598689ef43
5 changed files with 13 additions and 10 deletions

View File

@ -6,11 +6,10 @@
pub(crate) mod fmt;
mod block_on;
mod join;
mod select;
mod yield_now;
pub mod join;
pub mod select;
pub use block_on::*;
pub use join::*;
pub use select::*;
pub use yield_now::*;