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

17 lines
318 B
Go
Executable File

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)
}