(ctx *gin.Context, id string, input *service_dto.SaveServiceDoc)
| 730 | } |
| 731 | |
| 732 | func (i *imlServiceController) SaveServiceDoc(ctx *gin.Context, id string, input *service_dto.SaveServiceDoc) error { |
| 733 | return i.docModule.SaveServiceDoc(ctx, id, input) |
| 734 | } |
| 735 | |
| 736 | type imlAppController struct { |
| 737 | module service.IAppModule `autowired:""` |
nothing calls this directly
no test coverage detected