blob: 40f5dff43784aa7a969f39af9887114c9c7e5790 [file] [log] [blame]
package throttle
import (
"strconv"
"github.com/rackspace/gophercloud"
)
const (
path = "loadbalancers"
sslPath = "ssltermination"
)
func rootURL(c *gophercloud.ServiceClient, id int) string {
return c.ServiceURL(path, strconv.Itoa(id), sslPath)
}