blob: 378ae2a4064e944e50cc31b2158a14844d68ad8f [file] [log] [blame]
package networks
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
const resourcePath = "os-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)
}