Added THB currency.

Signed-off-by: Pavel Kirilin <win10@list.ru>
This commit is contained in:
2023-02-22 13:12:14 +04:00
parent c7ba9269de
commit 9720ad3b7b

View File

@ -26,6 +26,7 @@ lazy_static::lazy_static! {
"TRY", "TRY",
"AMD", "AMD",
"RSD", "RSD",
"THB"
]; ];
static ref CONVERTION_ALIASES: HashMap<&'static str, &'static str> = HashMap::from( static ref CONVERTION_ALIASES: HashMap<&'static str, &'static str> = HashMap::from(
@ -64,6 +65,8 @@ lazy_static::lazy_static! {
("драм", "AMD"), ("драм", "AMD"),
// RSD // RSD
("динар", "RSD"), ("динар", "RSD"),
// THB
("бат", "THB"),
] ]
); );