yulid/
prelude.rs

1//! The [`yulid`](crate) prelude.
2//!
3//! This module contains the most important items of the [`yulid`](crate) crate.
4//!
5//! To use the prelude, include `yulid` as a dependency in your `Cargo.toml` and use the following
6//! in every module:
7//!
8//! ```
9//! use yulid::prelude::*;
10//! ```
11
12pub use super::{
13  Bytes,
14  Ulid,
15};