blob: 9ee76bc7c05e25b5a78a82124e1935ff2fe37af7 [file] [log] [blame]
Ash Wilson0a997f82014-09-03 15:50:52 -04001package endpoints
2
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02003import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
Ash Wilson0a997f82014-09-03 15:50:52 -04004
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}