blob: 011cc0161ae26add57afe1608a9c4dae2068eb41 [file] [log] [blame]
Ash Wilson0a997f82014-09-03 15:50:52 -04001package endpoints
2
3import "github.com/rackspace/gophercloud"
4
5func getListURL(client *gophercloud.ServiceClient) string {
6 return client.ServiceURL("endpoints")
7}
8
9func getEndpointURL(client *gophercloud.ServiceClient, endpointID string) string {
10 return client.ServiceURL("endpoints", endpointID)
11}