blob: af6c50d1e69b513e79e72edb4ab1a69767d13ff1 [file] [log] [blame]
package flavors
import (
"gerrit.mcp.mirantis.net/debian/gophercloud.git"
)
func getURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("flavors", id)
}
func listURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL("flavors", "detail")
}
func createURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL("flavors")
}