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