blob: bce07d7e9334703848695cf8c2449ce84638f259 [file] [log] [blame]
package secgroups
import "github.com/rackspace/gophercloud"
const (
secgrouppath = "os-security-groups"
)
func resourceURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL(secgrouppath, id)
}
func rootURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL(secgrouppath)
}