blob: e837c7f1cc7f0b58cb6a982503429a27be206f03 [file] [log] [blame]
Brad Ison53e997c2016-03-26 18:02:05 -04001package policies
2
3import "github.com/rackspace/gophercloud"
4
5func listURL(c *gophercloud.ServiceClient, groupID string) string {
6 return c.ServiceURL("groups", groupID, "policies")
7}
Brad Isone7d6dfc2016-04-06 14:55:07 -04008
9func createURL(c *gophercloud.ServiceClient, groupID string) string {
10 return c.ServiceURL("groups", groupID, "policies")
11}