blob: 5cbdd17f9563a124abf0c35b7cd2f018aeb388a8 [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}