blob: 4084bcc4e975da4ab9994622e6578bcf1e283963 [file] [log] [blame]
Ash Wilsone47ea9e2014-09-10 16:03:44 -04001package containers
2
3import "github.com/rackspace/gophercloud"
4
5// getAccountURL returns the URI used to list Containers.
6func getAccountURL(c *gophercloud.ServiceClient) string {
7 return c.Endpoint
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}