blob: 309f071bae509c3f2661c8eb5c89ce7f9a2cc2be [file] [log] [blame]
Mikko Valkonen20de7802016-10-24 22:25:01 +03001package shares
2
3import "github.com/gophercloud/gophercloud"
4
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}