(ctx context.Context, aid ...string)
| 78 | } |
| 79 | |
| 80 | func (i *imlAPIService) ListLatestCommitRequest(ctx context.Context, aid ...string) ([]*commit.Commit[Request], error) { |
| 81 | return i.requestCommitService.ListLatest(ctx, aid...) |
| 82 | } |
| 83 | |
| 84 | func (i *imlAPIService) LatestRequest(ctx context.Context, aid string) (*commit.Commit[Request], error) { |
| 85 | return i.requestCommitService.Latest(ctx, aid) |
nothing calls this directly
no test coverage detected