blob: c4a896d905731c443d85c8b535879646fda221d9 [file] [log] [blame]
Jamie Hannaforde5145412014-11-06 12:35:59 +01001package sessions
2
3import (
4 "strconv"
5
6 "github.com/rackspace/gophercloud"
7)
8
9const (
10 path = "loadbalancers"
11 spPath = "sessionpersistence"
12)
13
14func rootURL(c *gophercloud.ServiceClient, id int) string {
15 return c.ServiceURL(path, strconv.Itoa(id), spPath)
16}