(ctx context.Context, apiclient client.APIClient, namespace string)
| 50 | } |
| 51 | |
| 52 | func getStackServices(ctx context.Context, apiclient client.APIClient, namespace string) (client.ServiceListResult, error) { |
| 53 | return apiclient.ServiceList(ctx, client.ServiceListOptions{Filters: getStackFilter(namespace)}) |
| 54 | } |
| 55 | |
| 56 | func getStackNetworks(ctx context.Context, apiclient client.APIClient, namespace string) (client.NetworkListResult, error) { |
| 57 | return apiclient.NetworkList(ctx, client.NetworkListOptions{Filters: getStackFilter(namespace)}) |
no test coverage detected
searching dependent graphs…