blob: c31a6058833b2e1ea31f8e863750707c77798200 [file] [log] [blame]
package images
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
func listDetailURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL("images", "detail")
}
func getURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("images", id)
}
func deleteURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("images", id)
}