blob: 93fa8d2118be1dfc4a2a0e37d87c59b93aee9124 [file] [log] [blame]
Ash Wilson9ccf9b62014-09-17 10:07:52 -04001package images
2
3import "github.com/rackspace/gophercloud"
4
5func getListURL(client *gophercloud.ServiceClient) string {
6 return client.ServiceURL("images", "detail")
7}
Ash Wilson7ddf0362014-09-17 10:59:09 -04008
9func getImageURL(client *gophercloud.ServiceClient, id string) string {
10 return client.ServiceURL("images", id)
11}