blob: bce07d7e9334703848695cf8c2449ce84638f259 [file] [log] [blame]
Jamie Hannaford924c09d2014-11-19 12:05:38 +01001package secgroups
2
3import "github.com/rackspace/gophercloud"
4
5const (
6 secgrouppath = "os-security-groups"
7)
8
9func resourceURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL(secgrouppath, id)
11}
12
13func rootURL(c *gophercloud.ServiceClient) string {
14 return c.ServiceURL(secgrouppath)
15}