1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
pub mod container; pub mod error; #[cfg(feature = "container-axum")] pub mod inject; #[cfg(feature = "container-postgres")] pub mod bound; pub use container::Container; pub use error::ContainerError; #[cfg(feature = "container-axum")] pub use inject::Inject; #[cfg(feature = "container-postgres")] pub use bound::{Bound, BoundModel}; #[cfg(feature = "container")] pub use rok_container_macros::Injectable;