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