AppFlowy/frontend/rust-lib/lib-dispatch/src/macros.rs
2022-01-27 14:18:41 -05:00

9 lines
166 B
Rust

#[macro_export]
macro_rules! dispatch_future {
($fut:expr) => {
DispatchFuture {
fut: Box::pin(async move { $fut.await }),
}
};
}