github.com/gophercloud/gophercloud@v1.11.0/openstack/compute/v2/images/urls.go (about)

     1  package images
     2  
     3  import "github.com/gophercloud/gophercloud"
     4  
     5  func listDetailURL(client *gophercloud.ServiceClient) string {
     6  	return client.ServiceURL("images", "detail")
     7  }
     8  
     9  func getURL(client *gophercloud.ServiceClient, id string) string {
    10  	return client.ServiceURL("images", id)
    11  }
    12  
    13  func deleteURL(client *gophercloud.ServiceClient, id string) string {
    14  	return client.ServiceURL("images", id)
    15  }