(ctx context.Context, serviceIds ...string)
| 25 | } |
| 26 | |
| 27 | func (i *imlDocService) ListLatestDocCommit(ctx context.Context, serviceIds ...string) ([]*commit.Commit[DocCommit], error) { |
| 28 | return i.commitService.ListLatest(ctx, serviceIds...) |
| 29 | } |
| 30 | |
| 31 | func (i *imlDocService) ListDocCommit(ctx context.Context, commitIds ...string) ([]*commit.Commit[DocCommit], error) { |
| 32 | return i.commitService.List(ctx, commitIds...) |
nothing calls this directly
no test coverage detected