blob: a1b6b3285aa5a5e90abf87bfbdca6667c0261beb [file] [log] [blame]
Jamie Hannaford5b7acc12015-02-13 09:14:25 +01001package flavors
2
3import (
4 "github.com/rackspace/gophercloud"
5)
6
7func getURL(client *gophercloud.ServiceClient, id string) string {
8 return client.ServiceURL("flavors", id)
9}
10
11func listURL(client *gophercloud.ServiceClient) string {
12 return client.ServiceURL("flavors")
13}