| 11 | use crate::{adapters::outbox::Outbox, utils::ApplicationResult}; |
| 12 | |
| 13 | pub struct UnitOfWork<R> |
| 14 | where |
| 15 | R: TRepository, |
| 16 | |
| 17 | { |
| 18 | executor: Arc<RwLock<Executor>>, |
| 19 | context: AtomicContextManager, |
| 20 | pub repository: R, |
| 21 | |
| 22 | } |
| 23 | impl<R> UnitOfWork<R> |
| 24 | where |
| 25 | R: TRepository, |
nothing calls this directly
no outgoing calls
no test coverage detected