first commit

This commit is contained in:
Mateusz Gruszczyński
2026-07-13 13:19:26 +02:00
commit bd562b3da6
50 changed files with 2221 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
"""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"]