Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
d1e6e76f1541e15667fabbb256a34dcc81c6a34e
/
.
/
rackspace
/
lb
/
v1
/
ssl
/
urls.go
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)
}