blob: b8059ce10d7afb9298529eaded2c7b7aff37b827 [file] [log] [blame]
Jon Perritt23e89c32015-01-19 15:39:45 -07001package flavors
2
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02003import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
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}