Files
g2s-aggregator/app/services/aggregator.py
T
Раис Юсупалиев adfa3e26de 001 Project structure
2026-03-07 13:41:30 +03:00

11 lines
361 B
Python

"""Aggregator service orchestrator skeleton."""
from app.schemas.request import DeliveryRequest
from app.schemas.response import DeliveryPrice
class AggregatorService:
async def get_all_prices(self, request: DeliveryRequest) -> list[DeliveryPrice]:
_ = request
raise NotImplementedError("Aggregator workflow is implemented in task 005.")