commit | 23e89c3867d5703bf35d8972bd73a56ca9816583 | [log] [tgz] |
---|---|---|
author | Jon Perritt <jrperritt@gmail.com> | Mon Jan 19 15:39:45 2015 -0700 |
committer | Jon Perritt <jrperritt@gmail.com> | Mon Jan 19 15:39:45 2015 -0700 |
tree | 565d6b74fbe1286e7259e6db5647f06b37dc2e82 | |
parent | 6073e62a50dc111776d534e9c40e5a7311fec999 [diff] [blame] |
openstack cdn service flavors operations
diff --git a/openstack/cdn/v1/flavors/urls.go b/openstack/cdn/v1/flavors/urls.go new file mode 100644 index 0000000..6eb38d2 --- /dev/null +++ b/openstack/cdn/v1/flavors/urls.go
@@ -0,0 +1,11 @@ +package flavors + +import "github.com/rackspace/gophercloud" + +func listURL(c *gophercloud.ServiceClient) string { + return c.ServiceURL("flavors") +} + +func getURL(c *gophercloud.ServiceClient, id string) string { + return c.ServiceURL("flavors", id) +}