recoverable_spawn/
lib.rs

1pub(crate) mod thread;
2
3pub(crate) use std::panic::set_hook;
4pub(crate) use std::sync::Arc;
5
6pub use thread::{r#async, sync, r#trait::*, r#type::*};