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