quite a bit of development around get rates input handling

This commit is contained in:
Pablo Martin 2024-06-07 16:10:35 +02:00
parent 46988352ca
commit 4f81ac2e62
8 changed files with 199 additions and 20 deletions

View file

@ -1,6 +1,10 @@
import pathlib
from dataclasses import dataclass
from currencies import Currency
DEFAULT_CURRENCIES = {Currency("EUR"), Currency("GBP"), Currency("USD")}
@dataclass
class PATHS: