Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
debian
/
gophercloud
/
303bf8a5e44befcf262f4d0502f7343f64c52d8e
/
.
/
openstack
/
cdn
/
v1
/
flavors
/
urls.go
blob: a8540a2aed8a97ffe9345c21119fb42cc2ab55e0 [
file
] [
log
] [
blame
]
package flavors
import "github.com/gophercloud/gophercloud"
func listURL(c *gophercloud.ServiceClient) string {
return c.ServiceURL("flavors")
}
func getURL(c *gophercloud.ServiceClient, id string) string {
return c.ServiceURL("flavors", id)
}