(name, reservablePorts string)
| 15 | } |
| 16 | |
| 17 | func NewRouterGroup(name, reservablePorts string) RouterGroup { |
| 18 | return RouterGroup{ |
| 19 | Name: name, |
| 20 | ReservablePorts: reservablePorts, |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | func (rg *RouterGroup) Create() { |
| 25 | session := CF("curl", "-X", "POST", "/routing/v1/router_groups", "-d", fmt.Sprintf(`{ |
no outgoing calls
no test coverage detected