github.com/gophercloud/gophercloud@v1.11.0/openstack/identity/v3/endpoints/urls.go (about)

     1  package endpoints
     2  
     3  import "github.com/gophercloud/gophercloud"
     4  
     5  func listURL(client *gophercloud.ServiceClient) string {
     6  	return client.ServiceURL("endpoints")
     7  }
     8  
     9  func endpointURL(client *gophercloud.ServiceClient, endpointID string) string {
    10  	return client.ServiceURL("endpoints", endpointID)
    11  }