pub use tokio::pin; pub use tokio::select; pub use tokio::task::JoinHandle; pub mod log { pub use tracing::{debug, error, info, warn}; } pub type Result = std::result::Result; pub fn failure(explain: &str) -> Result<()> { panic!() } pub use std::future::Future;