Jamie Hannaford | 8195446 | 2015-02-13 09:45:27 +0100 | [diff] [blame] | 1 | package flavors |
2 | |||||
3 | import ( | ||||
4 | "github.com/rackspace/gophercloud" | ||||
5 | os "github.com/rackspace/gophercloud/openstack/db/v1/flavors" | ||||
6 | "github.com/rackspace/gophercloud/pagination" | ||||
7 | ) | ||||
8 | |||||
9 | func List(client *gophercloud.ServiceClient) pagination.Pager { | ||||
10 | return os.List(client) | ||||
11 | } | ||||
12 | |||||
13 | func Get(client *gophercloud.ServiceClient, flavorID string) os.GetResult { | ||||
14 | return os.Get(client, flavorID) | ||||
15 | } |