blob: 464c17a2d5204aca8c7b43c6c4afdec9fdf11625 [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")
}