forked from lavina/lavina
1
0
Fork 0
lavina/src/prelude.rs

12 lines
233 B
Rust
Raw Normal View History

pub use std::future::Future;
2023-01-19 17:18:41 +00:00
pub use tokio::pin;
pub use tokio::select;
2023-01-19 17:58:56 +00:00
pub use tokio::task::JoinHandle;
2023-01-19 17:18:41 +00:00
pub mod log {
pub use tracing::{debug, error, info, warn};
}
pub type Result<T> = std::result::Result<T, anyhow::Error>;