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