feat(currencies): add Frankfurter as an Exchange Rate provider

This commit is contained in:
Herculino Trotta
2025-08-17 00:49:32 -03:00
parent 7e4defb9cc
commit c3a403b8f0
4 changed files with 110 additions and 12 deletions

View File

@@ -99,6 +99,7 @@ class ExchangeRateService(models.Model):
COINGECKO_FREE = "coingecko_free", "CoinGecko (Demo/Free)"
COINGECKO_PRO = "coingecko_pro", "CoinGecko (Pro)"
TRANSITIVE = "transitive", "Transitive (Calculated from Existing Rates)"
FRANKFURTER = "frankfurter", "Frankfurter"
class IntervalType(models.TextChoices):
ON = "on", _("On")