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