blob: 7075e1a94fd541bd6601f93e8fe907209c165b57 [file] [log] [blame]
ehdoub5066cd2016-11-10 22:15:42 +02001package securityservices
2
Krzysztof Szukiełojć3f41d082017-05-07 14:43:06 +02003import "gerrit.mcp.mirantis.net/debian/gophercloud.git"
ehdoub5066cd2016-11-10 22:15:42 +02004
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}