github.com/gophercloud/gophercloud@v1.11.0/openstack/db/v1/flavors/urls.go (about)

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