blob: 2a06f954547f9ab53720a9abd152cc68bdb27724 [file] [log] [blame]
Ash Wilsone47ea9e2014-09-10 16:03:44 -04001package containers
2
3import "github.com/rackspace/gophercloud"
4
Jon Perrittfc39b942014-09-10 21:18:19 -05005// accountURL returns the URI used to list Containers.
6func accountURL(c *gophercloud.ServiceClient) string {
Ash Wilsone47ea9e2014-09-10 16:03:44 -04007 return c.Endpoint
8}
9
Jon Perrittfc39b942014-09-10 21:18:19 -050010// containerURL returns the URI for making Container requests.
11func containerURL(c *gophercloud.ServiceClient, container string) string {
Ash Wilsone47ea9e2014-09-10 16:03:44 -040012 return c.ServiceURL(container)
13}