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