blob: 7152fa23af38566515de406a43802647d39baadd [file] [log] [blame]
Jon Perrittf1a3cf42015-01-19 16:19:54 -07001package flavors
2
3import (
4 "github.com/rackspace/gophercloud"
5
6 os "github.com/rackspace/gophercloud/openstack/cdn/v1/flavors"
7 "github.com/rackspace/gophercloud/pagination"
8)
9
10// List returns a single page of CDN flavors.
11func List(c *gophercloud.ServiceClient) pagination.Pager {
12 return os.List(c)
13}
14
15// Get retrieves a specific flavor based on its unique ID.
16func Get(c *gophercloud.ServiceClient, id string) os.GetResult {
17 return os.Get(c, id)
18}