| 17 | } |
| 18 | |
| 19 | type checkRepository struct { |
| 20 | dao dao.CheckDAO |
| 21 | l *zap.Logger |
| 22 | } |
| 23 | |
| 24 | func NewCheckRepository(dao dao.CheckDAO, l *zap.Logger) CheckRepository { |
| 25 | return &checkRepository{ |
nothing calls this directly
no outgoing calls
no test coverage detected