blob: 541249a92731840ef9e8edabe201bc5f439472c5 [file] [log] [blame]
package cdncontainers
import "github.com/rackspace/gophercloud"
func enableURL(c *gophercloud.ServiceClient, containerName string) string {
return c.ServiceURL(containerName)
}
func getURL(c *gophercloud.ServiceClient, container string) string {
return c.ServiceURL(container)
}
func updateURL(c *gophercloud.ServiceClient, container string) string {
return getURL(c, container)
}