| 15 | ) |
| 16 | |
| 17 | type imlPublishController struct { |
| 18 | publishModule publish.IPublishModule `autowired:""` |
| 19 | releaseModule release.IReleaseModule `autowired:""` |
| 20 | } |
| 21 | |
| 22 | func (c *imlPublishController) ReleaseDo(ctx *gin.Context, serviceId string, input *dto.ApplyOnReleaseInput) (*dto.Publish, error) { |
| 23 | newReleaseId, err := c.releaseModule.Create(ctx, serviceId, &dto2.CreateInput{ |
nothing calls this directly
no outgoing calls
no test coverage detected