blob: 08301a846b0984cd4e630084e25d4d62979d6975 [file] [log] [blame]
package tenantnetworks
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
const resourcePath = "os-tenant-networks"
func resourceURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL(resourcePath)
}
func listURL(c *gophercloud.ServiceClient) string {
return resourceURL(c)
}
func getURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL(resourcePath, id)
}