github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/openstack/bms/v2/nics/urls.go (about) 1 package nics 2 3 import ( 4 "github.com/chnsz/golangsdk" 5 ) 6 7 func listURL(client *golangsdk.ServiceClient, serverId string) string { 8 return client.ServiceURL("servers", serverId, "os-interface") 9 } 10 11 func getURL(client *golangsdk.ServiceClient, serverId string, Id string) string { 12 return client.ServiceURL("servers", serverId, "os-interface", Id) 13 }