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