hephae_utils/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
#![allow(internal_features)]
#![cfg_attr(docsrs, feature(rustdoc_internals))]
#![doc = include_str!("../README.md")]
#![cfg_attr(doc, deny(missing_docs))]

pub use hephae_utils_derive as derive;

/// Common imports for [`hephae_utils`](crate).
pub mod prelude {
    pub use crate::derive::plugin_conf;
}