We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently I have an use-case when I need convert a lot of currencies to another currencies in a row. In my code I need to do something like this:
client := // client creating for _, currency := range currencies { request := client.newRequest(...params) rsp, _ := client.do(request) }
Here is the problem: I need to do a lot of actions to just convert the currency :(
client := // client creating for _, currency := range currencies { rsp, _ := client.ConvertCurrency(currency, "USD") }
WDYT about it?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently I have an use-case when I need convert a lot of currencies to another currencies in a row. In my code I need to do something like this:
Here is the problem: I need to do a lot of actions to just convert the currency :(
What if this library will have some kind of advanced API to do something like:
WDYT about it?
The text was updated successfully, but these errors were encountered: