blob: 2a06f954547f9ab53720a9abd152cc68bdb27724 [file] [log] [blame]
package containers
import "github.com/rackspace/gophercloud"
// accountURL returns the URI used to list Containers.
func accountURL(c *gophercloud.ServiceClient) string {
return c.Endpoint
}
// containerURL returns the URI for making Container requests.
func containerURL(c *gophercloud.ServiceClient, container string) string {
return c.ServiceURL(container)
}