| 19 | use crate::{services::messagebus::MessageBus, utils::ApplicationError}; |
| 20 | |
| 21 | pub struct Boostrap; |
| 22 | impl Boostrap { |
| 23 | pub async fn message_bus() -> std::sync::Arc<MessageBus> { |
| 24 | MessageBus::new(command_handler().await, event_handler().await) |
nothing calls this directly
no outgoing calls
no test coverage detected