blob: 9e2c8e9011cdb4e0fd5bde3937a67b923fb8ec09 [file] [log] [blame]
ehdou10f1f852016-10-14 20:58:23 +03001package sharenetworks
2
3import "github.com/gophercloud/gophercloud"
4
5func createURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("share-networks")
7}
ehdou53687252016-10-14 22:10:13 +03008
9func deleteURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("share-networks", id)
11}
ehdou07943332016-10-24 21:21:58 +030012
13func listDetailURL(c *gophercloud.ServiceClient) string {
14 return c.ServiceURL("share-networks", "detail")
15}
ehdoua088cec2016-10-25 21:02:05 +030016
17func getURL(c *gophercloud.ServiceClient, id string) string {
18 return deleteURL(c, id)
19}