blob: 011cc0161ae26add57afe1608a9c4dae2068eb41 [file] [log] [blame]
package endpoints
import "github.com/rackspace/gophercloud"
func getListURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL("endpoints")
}
func getEndpointURL(client *gophercloud.ServiceClient, endpointID string) string {
return client.ServiceURL("endpoints", endpointID)
}