Source code for plaza_routing.integration.routing_engine_service

[docs]class RoutingEngine: def __init__(self, strategy): self._strategy = strategy
[docs] def route(self, start, destination): return self._strategy.route(start, destination)