commit | 85ed523c1c5083e7272570a06474eef7841d48f3 | [log] [tgz] |
---|---|---|
author | Jon Perritt <jrperritt@gmail.com> | Fri Jan 16 09:14:51 2015 -0700 |
committer | Jon Perritt <jrperritt@gmail.com> | Fri Jan 16 09:14:51 2015 -0700 |
tree | a60695fb50880d0b345eab5d10619f9940b446c5 | |
parent | f36970bf658873500fa87471cd3d054a68b9aed4 [diff] [blame] |
openstack cdn base operations
diff --git a/openstack/cdn/v1/base/urls.go b/openstack/cdn/v1/base/urls.go new file mode 100644 index 0000000..a95e18b --- /dev/null +++ b/openstack/cdn/v1/base/urls.go
@@ -0,0 +1,11 @@ +package base + +import "github.com/rackspace/gophercloud" + +func getURL(c *gophercloud.ServiceClient) string { + return c.ServiceURL() +} + +func pingURL(c *gophercloud.ServiceClient) string { + return c.ServiceURL("ping") +}