blob: 547d7b102a5c5ac30e4a291b9c5b4f7ce012faf8 [file] [log] [blame]
Ash Wilson0a997f82014-09-03 15:50:52 -04001package endpoints
2
3import "github.com/rackspace/gophercloud"
4
Ash Wilson1e1b7332014-09-30 16:38:11 -04005func listURL(client *gophercloud.ServiceClient) string {
Ash Wilson0a997f82014-09-03 15:50:52 -04006 return client.ServiceURL("endpoints")
7}
8
Ash Wilson1e1b7332014-09-30 16:38:11 -04009func endpointURL(client *gophercloud.ServiceClient, endpointID string) string {
Ash Wilson0a997f82014-09-03 15:50:52 -040010 return client.ServiceURL("endpoints", endpointID)
11}