| Jamie Hannaford | 17d2f87 | 2014-11-24 12:20:33 +0100 | [diff] [blame^] | 1 | package defsecrules |
| 2 | |||||
| 3 | import "github.com/rackspace/gophercloud" | ||||
| 4 | |||||
| 5 | const rulepath = "os-security-group-default-rules" | ||||
| 6 | |||||
| 7 | func resourceURL(c *gophercloud.ServiceClient, id string) string { | ||||
| 8 | return c.ServiceURL(rulepath, id) | ||||
| 9 | } | ||||
| 10 | |||||
| 11 | func rootURL(c *gophercloud.ServiceClient) string { | ||||
| 12 | return c.ServiceURL(rulepath) | ||||
| 13 | } | ||||