blob: 1de038c99f515d4246914b325f4f3af1fd869868 [file] [log] [blame]
package lbs
import (
"strconv"
"github.com/rackspace/gophercloud"
)
const (
path = "loadbalancers"
protocolsPath = "protocols"
)
func resourceURL(c *gophercloud.ServiceClient, id int) string {
return c.ServiceURL(path, strconv.Itoa(id))
}
func rootURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL(path)
}
func protocolsURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL(path, protocolsPath)
}