| 13 | ) |
| 14 | |
| 15 | type imlUpstreamController struct { |
| 16 | upstreamModule upstream.IUpstreamModule `autowired:""` |
| 17 | projectModule service.IServiceModule `autowired:""` |
| 18 | partitionModule cluster.IClusterModule `autowired:""` |
| 19 | } |
| 20 | |
| 21 | func (i *imlUpstreamController) Get(ctx *gin.Context, serviceId string) (upstream_dto.UpstreamConfig, error) { |
| 22 | return i.upstreamModule.Get(ctx, serviceId) |
nothing calls this directly
no outgoing calls
no test coverage detected