blob: 3df99ab4bdd1a4321c65954534122a40c79ec563 [file] [log] [blame]
package lbs
import (
"strconv"
"github.com/rackspace/gophercloud"
)
const path = "loadbalancers"
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)
}