blob: 5a52aedc264cb1c19a935adc8870cc9c7a9b77fc [file] [log] [blame]
Ash Wilsone47ea9e2014-09-10 16:03:44 -04001package objects
2
3import "github.com/rackspace/gophercloud"
4
5// getObjectURL returns the URI for making Object requests.
6func getObjectURL(c *gophercloud.ServiceClient, container, object string) string {
7 return c.ServiceURL(container, object)
8}
9
10// getContainerURL returns the URI for making Container requests.
11func getContainerURL(c *gophercloud.ServiceClient, container string) string {
12 return c.ServiceURL(container)
13}