We are trying to use this in an application with custom currencies (point systems) and noticed if we would like to add a currency this requires adding to the config
Willing to help contribute with a PR if there is interest from package owners. Was thinking of using an :ets table to handle the currency definitions backed by a GenServer (for example).
The biggest issue with this will be handling the dynamically created methods
Money.Currency.#{currency}(100)
Will need to find a way to maintain this behavior. 🤔
We are trying to use this in an application with custom currencies (point systems) and noticed if we would like to add a currency this requires adding to the config
Would be great if we could add currencies dynamically for example:
Willing to help contribute with a PR if there is interest from package owners. Was thinking of using an :ets table to handle the currency definitions backed by a GenServer (for example). The biggest issue with this will be handling the dynamically created methods
Money.Currency.#{currency}(100)
Will need to find a way to maintain this behavior. 🤔