(cb func(models.Route) bool)
| 20 | type RouteRepository interface { |
| 21 | ListRoutes(cb func(models.Route) bool) (apiErr error) |
| 22 | ListAllRoutes(cb func(models.Route) bool) (apiErr error) |
| 23 | Find(host string, domain models.DomainFields, path string, port int) (route models.Route, apiErr error) |
| 24 | Create(host string, domain models.DomainFields, path string, port int, useRandomPort bool) (createdRoute models.Route, apiErr error) |
| 25 | CheckIfExists(host string, domain models.DomainFields, path string) (found bool, apiErr error) |
no outgoing calls
no test coverage detected