(body io.ReadCloser)
| 122 | } |
| 123 | |
| 124 | func parseListVnets(body io.ReadCloser) ([]*VirtualNetwork, error) { |
| 125 | var vnets []*VirtualNetwork |
| 126 | err := parseResponse(body, &vnets) |
| 127 | return vnets, err |
| 128 | } |
| 129 | |
| 130 | func parseVnet(body io.ReadCloser) (VirtualNetwork, error) { |
| 131 | var vnet VirtualNetwork |
no test coverage detected