| Mikko Valkonen | 20de780 | 2016-10-24 22:25:01 +0300 | [diff] [blame] | 1 | package shares |
| 2 | |||||
| 3 | import "github.com/gophercloud/gophercloud" | ||||
| 4 | |||||
| 5 | func createURL(c *gophercloud.ServiceClient) string { | ||||
| 6 | return c.ServiceURL("shares") | ||||
| 7 | } | ||||
| Mikko Valkonen | 4c108b5 | 2016-10-24 23:11:25 +0300 | [diff] [blame^] | 8 | |
| 9 | func deleteURL(c *gophercloud.ServiceClient, id string) string { | ||||
| 10 | return c.ServiceURL("shares", id) | ||||
| 11 | } | ||||