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