blob: e4deb5f6a600fdb2f8bbdb32321d0f5ff2b65761 [file] [log] [blame]
ehdoub5066cd2016-11-10 22:15:42 +02001package securityservices
2
3import "github.com/gophercloud/gophercloud"
4
5func createURL(c *gophercloud.ServiceClient) string {
6 return c.ServiceURL("security-services")
7}
ehdou894b50d2017-01-07 00:38:03 +02008
9func deleteURL(c *gophercloud.ServiceClient, id string) string {
10 return c.ServiceURL("security-services", id)
11}
ehdoub46ba5a2017-03-08 20:56:49 +020012
13func listURL(c *gophercloud.ServiceClient) string {
14 return c.ServiceURL("security-services", "detail")
15}