blob: 6198c5417aeb0b26d82ec73ddbf17df36ae0d6e6 [file] [log] [blame]
package sharenetworks
import "github.com/gophercloud/gophercloud"
func createURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("share-networks")
}
func deleteURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("share-networks", id)
}
func listDetailURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("share-networks", "detail")
}
func getURL(c *gophercloud.ServiceClient, id string) string {
return deleteURL(c, id)
}
func updateURL(c *gophercloud.ServiceClient, id string) string {
return deleteURL(c, id)
}