Joe Topjian | 71b85bd | 2017-03-09 18:55:36 -0700 | [diff] [blame^] | 1 | package zones |
2 | |||||
3 | import "github.com/gophercloud/gophercloud" | ||||
4 | |||||
5 | func listURL(c *gophercloud.ServiceClient) string { | ||||
6 | return c.ServiceURL("zones") | ||||
7 | } | ||||
8 | |||||
9 | func zoneURL(c *gophercloud.ServiceClient, zoneID string) string { | ||||
10 | return c.ServiceURL("zones", zoneID) | ||||
11 | } |