Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
f4052c6e3415e6453dff01a15a39417b94844d62
/
.
/
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)
}