Fix: re-export BundleInserter, BundleRemover and BundleSpawner

This commit is contained in:
Giacomo Stevanato 2025-07-10 19:45:38 +02:00
parent 0d4f8ea461
commit d80ed988b7
No known key found for this signature in database

View File

@ -9,6 +9,10 @@ mod spawner;
#[cfg(test)] #[cfg(test)]
mod tests; mod tests;
pub(crate) use insert::BundleInserter;
pub(crate) use remove::BundleRemover;
pub(crate) use spawner::BundleSpawner;
/// Derive the [`Bundle`] trait /// Derive the [`Bundle`] trait
/// ///
/// You can apply this derive macro to structs that are /// You can apply this derive macro to structs that are