(ctx context.Context, id string)
| 10 | |
| 11 | type IUpstreamService interface { |
| 12 | Get(ctx context.Context, id string) (*Upstream, error) |
| 13 | Save(ctx context.Context, upstream *SaveUpstream) error |
| 14 | Delete(ctx context.Context, id string) error |
| 15 | List(ctx context.Context, serviceIds ...string) ([]*Upstream, error) |
no outgoing calls
no test coverage detected