Ash Wilson | 0a997f8 | 2014-09-03 15:50:52 -0400 | [diff] [blame^] | 1 | package endpoints |
2 | |||||
3 | import "github.com/rackspace/gophercloud" | ||||
4 | |||||
5 | func getListURL(client *gophercloud.ServiceClient) string { | ||||
6 | return client.ServiceURL("endpoints") | ||||
7 | } | ||||
8 | |||||
9 | func getEndpointURL(client *gophercloud.ServiceClient, endpointID string) string { | ||||
10 | return client.ServiceURL("endpoints", endpointID) | ||||
11 | } |