| 18 | ) |
| 19 | |
| 20 | type imlAPIDocService struct { |
| 21 | store api.IAPIDocStore `autowired:""` |
| 22 | commitService commit.ICommitWithKeyService[DocCommit] `autowired:""` |
| 23 | } |
| 24 | |
| 25 | func (i *imlAPIDocService) LatestAPICountByCommits(ctx context.Context, commitIds ...string) (map[string]int64, error) { |
| 26 | commits, err := i.commitService.List(ctx, commitIds...) |
nothing calls this directly
no outgoing calls
no test coverage detected