(ctx context.Context, serviceIds ...string)
| 43 | } |
| 44 | |
| 45 | func (i *imlAPIDocService) ListLatestDocCommit(ctx context.Context, serviceIds ...string) ([]*commit.Commit[DocCommit], error) { |
| 46 | return i.commitService.ListLatest(ctx, serviceIds...) |
| 47 | } |
| 48 | |
| 49 | func (i *imlAPIDocService) LatestAPICountByServices(ctx context.Context, serviceIds ...string) (map[string]int64, error) { |
| 50 | list, err := i.commitService.ListLatest(ctx, serviceIds...) |
nothing calls this directly
no test coverage detected