connect and verify everything is ready

This commit is contained in:
Pablo Martin 2024-06-12 18:20:55 +02:00
parent e1bcdb1309
commit 7867e73f10
2 changed files with 101 additions and 0 deletions

View file

@ -9,6 +9,9 @@ DEFAULT_CURRENCIES = {Currency("EUR"), Currency("GBP"), Currency("USD")}
RATES_SOURCES = {"mock": MockRateFetcher, "xe": XERateFetcher}
DWH_SCHEMA = "sync_xedotcom_currency_rates"
DWH_TABLE = "exchange_rates"
@dataclass
class PATHS: