blob: 491bde6f628ae7df675ccfc2f95ab4ca610701b3 [file] [log] [blame]
Joe Topjian99a06132015-02-22 05:06:25 +00001package networks
2
Jon Perritt27249f42016-02-18 10:35:59 -06003import "github.com/gophercloud/gophercloud"
Joe Topjian99a06132015-02-22 05:06:25 +00004
5const resourcePath = "os-networks"
6
7func resourceURL(c *gophercloud.ServiceClient) string {
8 return c.ServiceURL(resourcePath)
9}
10
11func listURL(c *gophercloud.ServiceClient) string {
12 return resourceURL(c)
13}
14
15func getURL(c *gophercloud.ServiceClient, id string) string {
16 return c.ServiceURL(resourcePath, id)
17}