github.com/gophercloud/gophercloud@v1.11.0/openstack/compute/v2/extensions/services/urls.go (about)

     1  package services
     2  
     3  import "github.com/gophercloud/gophercloud"
     4  
     5  func listURL(c *gophercloud.ServiceClient) string {
     6  	return c.ServiceURL("os-services")
     7  }
     8  
     9  func updateURL(c *gophercloud.ServiceClient, id string) string {
    10  	return c.ServiceURL("os-services", id)
    11  }