| 21 | var _ IAPIDocModule = (*imlAPIDocModule)(nil) |
| 22 | |
| 23 | type imlAPIDocModule struct { |
| 24 | apiDocService api_doc.IAPIDocService `autowired:""` |
| 25 | serviceService service.IServiceService `autowired:""` |
| 26 | serviceOverviewService service_overview.IOverviewService `autowired:""` |
| 27 | transaction store.ITransaction `autowired:""` |
| 28 | } |
| 29 | |
| 30 | func (i *imlAPIDocModule) UpdateDoc(ctx context.Context, serviceId string, input *api_doc_dto.UpdateDoc) (*api_doc_dto.ApiDocDetail, error) { |
| 31 | info, err := i.serviceService.Get(ctx, serviceId) |
nothing calls this directly
no outgoing calls
no test coverage detected