1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../README.md")]
#[cfg(feature = "core")]
pub mod core {
    pub use plugy_core::*;
}
#[cfg(feature = "runtime")]
pub mod runtime {
    pub use plugy_runtime::*;
}
#[cfg(feature = "macros")]
pub mod macros {
    pub use plugy_macros::*;
}