| 10 | ) |
| 11 | |
| 12 | type IUpstreamController interface { |
| 13 | Get(ctx *gin.Context, serviceId string) (upstream_dto.UpstreamConfig, error) |
| 14 | Save(ctx *gin.Context, serviceId string, upstream *upstream_dto.Upstream) (upstream_dto.UpstreamConfig, error) |
| 15 | } |
| 16 | |
| 17 | func init() { |
| 18 | autowire.Auto[IUpstreamController](func() reflect.Value { |
no outgoing calls
no test coverage detected