blob: bd6b098dadc27f666df2da23ba0d67c094c82287 [file] [log] [blame]
Jon Perritt9776ef62015-03-16 17:11:22 -06001package cloudnetworks
2
3import "github.com/rackspace/gophercloud"
4
5func listURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("cloud_networks")
7}
8
9func getURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("cloud_networks", id)
11}