blob: 6eb38d2939fa08d9eae2070bd66f463b6cf26c3e [file] [log] [blame]
Jon Perritt23e89c32015-01-19 15:39:45 -07001package flavors
2
3import "github.com/rackspace/gophercloud"
4
5func listURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("flavors")
7}
8
9func getURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("flavors", id)
11}