Files
m3o-go/examples/crypto/symbols/getListOfAllSupportedSymbols/main.go
2022-02-28 17:55:46 +00:00

16 lines
277 B
Go
Executable File

package main
import (
"fmt"
"os"
"go.m3o.com/crypto"
)
// Returns the full list of supported symbols
func main() {
cryptoService := crypto.NewCryptoService(os.Getenv("M3O_API_TOKEN"))
rsp, err := cryptoService.Symbols(&crypto.SymbolsRequest{})
fmt.Println(rsp, err)
}