blob: 80cf57eb352eaeb2c36462a81c63d34c646e6d60 [file] [log] [blame]
package endpoints
import "github.com/gophercloud/gophercloud"
func listURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL("endpoints")
}
func endpointURL(client *gophercloud.ServiceClient, endpointID string) string {
return client.ServiceURL("endpoints", endpointID)
}