blob: 11529ad64423ce090d55e546f36a2c9172f11551 [file] [log] [blame]
package allocations
import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
func createURL(client *gophercloud.ServiceClient) string {
return client.ServiceURL("allocations")
}
func listURL(client *gophercloud.ServiceClient) string {
return createURL(client)
}
func resourceURL(client *gophercloud.ServiceClient, id string) string {
return client.ServiceURL("allocations", id)
}
func deleteURL(client *gophercloud.ServiceClient, id string) string {
return resourceURL(client, id)
}
func getURL(client *gophercloud.ServiceClient, id string) string {
return resourceURL(client, id)
}