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