| package projects | |
| import "github.com/gophercloud/gophercloud" | |
| func listURL(client *gophercloud.ServiceClient) string { | |
| return client.ServiceURL("projects") | |
| } | |
| func getURL(client *gophercloud.ServiceClient, projectID string) string { | |
| return client.ServiceURL("projects", projectID) | |
| } |