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