blob: 5bd74eeb2ad30de046c7b2bdf093805cdeec4e11 [file] [log] [blame]
Joe Topjian71b85bd2017-03-09 18:55:36 -07001package zones
2
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02003import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
Joe Topjian71b85bd2017-03-09 18:55:36 -07004
5func listURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("zones")
7}
8
9func zoneURL(c *gophercloud.ServiceClient, zoneID string) string {
10 return c.ServiceURL("zones", zoneID)
11}