blob: a24301b18651b4c3819c777d387bd9d92663091d [file] [log] [blame]
Jamie Hannaford5b7acc12015-02-13 09:14:25 +01001package flavors
2
Jon Perritt27249f42016-02-18 10:35:59 -06003import "github.com/gophercloud/gophercloud"
Jamie Hannaford05d200d2015-02-20 14:49:05 +01004
Jamie Hannaford8803f832015-02-23 10:44:55 +01005func getURL(client *gophercloud.ServiceClient, id string) string {
6 return client.ServiceURL("flavors", id)
Jamie Hannaford5b7acc12015-02-13 09:14:25 +01007}
8
9func listURL(client *gophercloud.ServiceClient) string {
10 return client.ServiceURL("flavors")
11}