| 25 | } |
| 26 | |
| 27 | type InteractiveRepositoryImpl struct { |
| 28 | dao dao.InteractiveDAO |
| 29 | cache cache.InteractiveCache |
| 30 | l *zap.Logger |
| 31 | } |
| 32 | |
| 33 | func NewInteractiveRepository(dao dao.InteractiveDAO, l *zap.Logger, cache cache.InteractiveCache) InteractiveRepository { |
| 34 | return &InteractiveRepositoryImpl{ |
nothing calls this directly
no outgoing calls
no test coverage detected