Jamie Hannaford | 5b7acc1 | 2015-02-13 09:14:25 +0100 | [diff] [blame] | 1 | package flavors |
| 2 | |
Jamie Hannaford | 8803f83 | 2015-02-23 10:44:55 +0100 | [diff] [blame] | 3 | import "github.com/rackspace/gophercloud" |
Jamie Hannaford | 05d200d | 2015-02-20 14:49:05 +0100 | [diff] [blame] | 4 | |
Jamie Hannaford | 8803f83 | 2015-02-23 10:44:55 +0100 | [diff] [blame] | 5 | func getURL(client *gophercloud.ServiceClient, id string) string { |
| 6 | return client.ServiceURL("flavors", id) |
Jamie Hannaford | 5b7acc1 | 2015-02-13 09:14:25 +0100 | [diff] [blame] | 7 | } |
| 8 | |
| 9 | func listURL(client *gophercloud.ServiceClient) string { |
| 10 | return client.ServiceURL("flavors") |
| 11 | } |