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