//! Phase 2.8 Services Module //! //! This module contains external service integrations: //! - Ingredient Mapper (EU to US drug names) //! - OpenFDA Service (drug interactions) //! - Interaction Checker (combined service) pub mod ingredient_mapper; pub mod openfda_service; pub mod interaction_service; pub use ingredient_mapper::IngredientMapper; pub use openfda_service::OpenFDAService; pub use interaction_service::InteractionService;