break stuff by adding new param

This commit is contained in:
Pablo Martin 2024-06-12 17:36:33 +02:00
parent 013f2cdadb
commit 78e3d71b05
4 changed files with 34 additions and 3 deletions

View file

@ -3,8 +3,12 @@ from dataclasses import dataclass
from money.currency import Currency
from xexe.rate_fetching import MockRateFetcher, XERateFetcher
DEFAULT_CURRENCIES = {Currency("EUR"), Currency("GBP"), Currency("USD")}
RATES_SOURCES = {"mock": MockRateFetcher, "xe": XERateFetcher}
@dataclass
class PATHS: