mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-13 03:25:32 +00:00
17 lines
330 B
Go
Executable File
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)
|
|
}
|