blob: 5e746bd6368b2ac97ff0844b3aae4f1d56c3ea12 [file] [log] [blame]
package objects
import (
"gerrit.mcp.mirantis.net/debian/gophercloud.git"
)
func listURL(c *gophercloud.ServiceClient, container string) string {
return c.ServiceURL(container)
}
func copyURL(c *gophercloud.ServiceClient, container, object string) string {
return c.ServiceURL(container, object)
}
func createURL(c *gophercloud.ServiceClient, container, object string) string {
return copyURL(c, container, object)
}
func getURL(c *gophercloud.ServiceClient, container, object string) string {
return copyURL(c, container, object)
}
func deleteURL(c *gophercloud.ServiceClient, container, object string) string {
return copyURL(c, container, object)
}
func downloadURL(c *gophercloud.ServiceClient, container, object string) string {
return copyURL(c, container, object)
}
func updateURL(c *gophercloud.ServiceClient, container, object string) string {
return copyURL(c, container, object)
}