forked from lavina/lavina
15 lines
262 B
Rust
15 lines
262 B
Rust
|
pub use tokio::pin;
|
||
|
pub use tokio::select;
|
||
|
|
||
|
pub mod log {
|
||
|
pub use tracing::{debug, error, info, warn};
|
||
|
}
|
||
|
|
||
|
pub type Result<T> = std::result::Result<T, anyhow::Error>;
|
||
|
|
||
|
pub fn failure(explain: &str) -> Result<()> {
|
||
|
panic!()
|
||
|
}
|
||
|
|
||
|
pub use std::future::Future;
|