| 16 | var _ IDocService = (*imlDocService)(nil) |
| 17 | |
| 18 | type imlDocService struct { |
| 19 | store service.IServiceDocStore `autowired:""` |
| 20 | commitService commit.ICommitWithKeyService[DocCommit] `autowired:""` |
| 21 | } |
| 22 | |
| 23 | func (i *imlDocService) GetDocCommit(ctx context.Context, commitId string) (*commit.Commit[DocCommit], error) { |
| 24 | return i.commitService.Get(ctx, commitId) |
nothing calls this directly
no outgoing calls
no test coverage detected