Go library to parse the European Central Bank statistics for daily foreign currency rates
- Get the current EUR exchange rate
- Get the past 90 day EUR historic exchange rate
- Get the historic EUR exchange rate
func main() {
exchangeRate, err := goeuro.AllCurrentRates()
usd := exchangeRate.Rates["USD"]
fmt.Printf("today 1 EUR = %s USD", usd)
}
This repository is licensed under MIT Open Source Licence