Files
services/examples/forex/quote/go/getAFxQuote.go

18 lines
319 B
Go
Executable File

package example
import (
"fmt"
"os"
"github.com/micro/services/clients/go/forex"
)
// 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)
}