blob: a8540a2aed8a97ffe9345c21119fb42cc2ab55e0 [file] [log] [blame]
Jon Perritt23e89c32015-01-19 15:39:45 -07001package flavors
2
Jon Perritt27249f42016-02-18 10:35:59 -06003import "github.com/gophercloud/gophercloud"
Jon Perritt23e89c32015-01-19 15:39:45 -07004
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}