Files
fuel_track/app/services.py
T
Mateusz Gruszczyński bd562b3da6 first commit
2026-07-13 13:19:26 +02:00

9 lines
531 B
Python

"""Compatibility facade. New code lives in domain/ and integrations/."""
from .domain.costs import calculate_costs, money
from .domain.invoices import invoice_period
from .integrations.orlen import fetch_orlen_price, fetch_orlen_range, POLISH_REGIONS, PRODUCT_IDS
from .integrations.ure import fetch_ure_stations, aggregate_ure_companies
__all__ = ["calculate_costs", "money", "invoice_period", "fetch_orlen_price", "fetch_orlen_range",
"POLISH_REGIONS", "PRODUCT_IDS", "fetch_ure_stations", "aggregate_ure_companies"]