github.com/gophercloud/gophercloud@v1.11.0/openstack/dns/v2/zones/urls.go (about) 1 package zones 2 3 import "github.com/gophercloud/gophercloud" 4 5 func baseURL(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 }