blob: 2ab2b5d67f936b80ed890457b3bc55b6c902a163 [file] [log] [blame]
package roles
import "github.com/rackspace/gophercloud"
const (
extPath = "OS-KSADMN"
rolePath = "roles"
)
func resourceURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL(extPath, rolePath, id)
}
func rootURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL(extPath, rolePath)
}