forked from lavina/lavina
15 lines
355 B
Rust
15 lines
355 B
Rust
pub use std::future::Future;
|
|
|
|
pub use tokio::pin;
|
|
pub use tokio::select;
|
|
pub use tokio::task::JoinHandle;
|
|
pub use tokio::sync::oneshot::{channel as oneshot, Receiver as Deferred, Sender as Promise};
|
|
|
|
pub mod log {
|
|
pub use tracing::{debug, error, info, warn};
|
|
}
|
|
|
|
pub type Result<T> = std::result::Result<T, anyhow::Error>;
|
|
|
|
pub type ByteVec = Vec<u8>;
|