blob: 80cf57eb352eaeb2c36462a81c63d34c646e6d60 [file] [log] [blame]
Ash Wilson0a997f82014-09-03 15:50:52 -04001package endpoints
2
Jon Perritt27249f42016-02-18 10:35:59 -06003import "github.com/gophercloud/gophercloud"
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}