(ctx *gin.Context, serviceId string, releaseId string)
| 79 | } |
| 80 | |
| 81 | func (c *imlPublishController) CheckPublish(ctx *gin.Context, serviceId string, releaseId string) (*dto.DiffOut, error) { |
| 82 | return c.publishModule.CheckPublish(ctx, serviceId, releaseId) |
| 83 | } |
| 84 | |
| 85 | func (c *imlPublishController) Close(ctx *gin.Context, serviceId string, id string) error { |
| 86 | err := c.publishModule.Stop(ctx, serviceId, id) |
nothing calls this directly
no test coverage detected