Mikko Valkonen | 20de780 | 2016-10-24 22:25:01 +0300 | [diff] [blame] | 1 | package shares |
| 2 | |
Krzysztof Szukiełojć | 3f41d08 | 2017-05-07 14:43:06 +0200 | [diff] [blame^] | 3 | import "gerrit.mcp.mirantis.net/debian/gophercloud.git" |
Mikko Valkonen | 20de780 | 2016-10-24 22:25:01 +0300 | [diff] [blame] | 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 | } |
Mikko Valkonen | d887d2a | 2016-10-25 21:00:09 +0300 | [diff] [blame] | 12 | |
| 13 | func getURL(c *gophercloud.ServiceClient, id string) string { |
| 14 | return c.ServiceURL("shares", id) |
| 15 | } |