1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

mod compat;
mod coroutine;
mod functions;

pub use crate::compat::*;
pub use coroutine::*;
pub use functions::*;

pub mod executor;