blob: 4336ab955fed12bb7378710ec210b5a8b60b0eac [file] [log] [blame]
Krzysztof Szukiełojćab149982017-05-10 14:49:39 +02001package agents
2
3import gophercloud "gerrit.mcp.mirantis.net/debian/gophercloud.git"
4
5func listURL(c *gophercloud.ServiceClient) string {
Dmitry Kalashnik7db726b2017-06-01 19:39:49 +04006 return c.ServiceURL("agents")
Krzysztof Szukiełojćab149982017-05-10 14:49:39 +02007}
Ildar Svetlov790e9f22019-03-24 22:33:37 +04008
9func listDHCPNetworksURL(client *gophercloud.ServiceClient, id string) string {
10 return client.ServiceURL("agents", id, "dhcp-networks")
11}