Files
services/examples/forex/price/go/getAnFxPrice.go
2021-09-16 12:52:36 +01:00

17 lines
330 B
Go
Executable File

package example
import (
"fmt"
"github.com/micro/services/clients/go/forex"
"os"
)
// Get the latest price for a given forex ticker
func GetAnFxPrice() {
forexService := forex.NewForexService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := forexService.Price(&forex.PriceRequest{
Symbol: "GBPUSD",
})
fmt.Println(rsp, err)
}