blob: 4ae22695b53b2ca1c262de14972c73cede661e0a [file] [log] [blame]
Ash Wilson9ccf9b62014-09-17 10:07:52 -04001package images
2
3import "github.com/rackspace/gophercloud"
4
Ash Wilson31f6bde2014-09-25 14:52:12 -04005func listURL(client *gophercloud.ServiceClient) string {
Ash Wilson9ccf9b62014-09-17 10:07:52 -04006 return client.ServiceURL("images", "detail")
7}
Ash Wilson7ddf0362014-09-17 10:59:09 -04008
Ash Wilson31f6bde2014-09-25 14:52:12 -04009func imageURL(client *gophercloud.ServiceClient, id string) string {
Ash Wilson7ddf0362014-09-17 10:59:09 -040010 return client.ServiceURL("images", id)
11}