| package projects |
| |
| import "gerrit.mcp.mirantis.net/debian/gophercloud.git" |
| |
| func listURL(client *gophercloud.ServiceClient) string { |
| return client.ServiceURL("projects") |
| } |
| |
| func getURL(client *gophercloud.ServiceClient, projectID string) string { |
| return client.ServiceURL("projects", projectID) |
| } |
| |
| func createURL(client *gophercloud.ServiceClient) string { |
| return client.ServiceURL("projects") |
| } |
| |
| func deleteURL(client *gophercloud.ServiceClient, projectID string) string { |
| return client.ServiceURL("projects", projectID) |
| } |
| |
| func updateURL(client *gophercloud.ServiceClient, projectID string) string { |
| return client.ServiceURL("projects", projectID) |
| } |