blob: 309f071bae509c3f2661c8eb5c89ce7f9a2cc2be [file] [log] [blame]
package shares
import "github.com/gophercloud/gophercloud"
func createURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("shares")
}
func deleteURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("shares", id)
}
func getURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("shares", id)
}