blob: 7cb1c81082e0f53cec76f4da9dedd5419e802852 [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}