blob: 541249a92731840ef9e8edabe201bc5f439472c5 [file] [log] [blame]
Jon Perrittb5c78122014-10-15 20:44:39 -05001package cdncontainers
2
3import "github.com/rackspace/gophercloud"
4
Jon Perrittb5c78122014-10-15 20:44:39 -05005func enableURL(c *gophercloud.ServiceClient, containerName string) string {
6 return c.ServiceURL(containerName)
7}
Jon Perritta3de08f2014-12-17 22:08:19 -07008
9func getURL(c *gophercloud.ServiceClient, container string) string {
10 return c.ServiceURL(container)
11}
12
13func updateURL(c *gophercloud.ServiceClient, container string) string {
14 return getURL(c, container)
15}