Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
c3d49b79485edd7f2bae90bdffc7065a5e15f313
/
.
/
rackspace
/
lb
/
v1
/
sessions
/
urls.go
blob: c4a896d905731c443d85c8b535879646fda221d9 [
file
] [
log
] [
blame
]
package sessions
import (
"strconv"
"github.com/rackspace/gophercloud"
)
const (
path = "loadbalancers"
spPath = "sessionpersistence"
)
func rootURL(c *gophercloud.ServiceClient, id int) string {
return c.ServiceURL(path, strconv.Itoa(id), spPath)
}