| ehdou | 10f1f85 | 2016-10-14 20:58:23 +0300 | [diff] [blame] | 1 | package sharenetworks |
| 2 | |||||
| 3 | import "github.com/gophercloud/gophercloud" | ||||
| 4 | |||||
| 5 | func createURL(c *gophercloud.ServiceClient) string { | ||||
| 6 | return c.ServiceURL("share-networks") | ||||
| 7 | } | ||||
| ehdou | 5368725 | 2016-10-14 22:10:13 +0300 | [diff] [blame] | 8 | |
| 9 | func deleteURL(c *gophercloud.ServiceClient, id string) string { | ||||
| 10 | return c.ServiceURL("share-networks", id) | ||||
| 11 | } | ||||