blob: e746b725b6f8b955a8143367c9b7c11a85ade3ca [file] [log] [blame]
Mikko Valkonen20de7802016-10-24 22:25:01 +03001package shares
2
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02003import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
Mikko Valkonen20de7802016-10-24 22:25:01 +03004
5func createURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("shares")
7}
Mikko Valkonen4c108b52016-10-24 23:11:25 +03008
9func deleteURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("shares", id)
11}
Mikko Valkonend887d2a2016-10-25 21:00:09 +030012
13func getURL(c *gophercloud.ServiceClient, id string) string {
14 return c.ServiceURL("shares", id)
15}