blob: a377960853746c45a1fde9a6f2eb4f49f276f017 [file] [log] [blame]
package objects
import "github.com/rackspace/gophercloud"
// objectURL returns the URI for making Object requests.
func objectURL(c *gophercloud.ServiceClient, container, object string) string {
return c.ServiceURL(container, object)
}
// containerURL returns the URI for making Container requests.
func containerURL(c *gophercloud.ServiceClient, container string) string {
return c.ServiceURL(container)
}