()
| 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) |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | ///* `Dependency` is the struct you implement injectable dependencies that will be called inside the function. |
nothing calls this directly
no test coverage detected