package example import ( "fmt" "github.com/micro/services/clients/go/forex" "os" ) // Get the latest quote for the forex func GetAfxQuote() { forexService := forex.NewForexService(os.Getenv("MICRO_API_TOKEN")) rsp, err := forexService.Quote(&forex.QuoteRequest{ Symbol: "GBPUSD", }) fmt.Println(rsp, err) }