(config coreconfig.Reader, gateway net.Gateway)
| 20 | } |
| 21 | |
| 22 | func NewRoutingAPIRepository(config coreconfig.Reader, gateway net.Gateway) RoutingAPIRepository { |
| 23 | return routingAPIRepository{ |
| 24 | config: config, |
| 25 | gateway: gateway, |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | func (r routingAPIRepository) ListRouterGroups(cb func(models.RouterGroup) bool) (apiErr error) { |
| 30 | routerGroups := models.RouterGroups{} |
no outgoing calls
no test coverage detected