mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
29 lines
489 B
Go
29 lines
489 B
Go
package main
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(symbolsCmd)
|
|
}
|
|
|
|
var symbolsCmd = &cobra.Command{
|
|
Use: "symbols",
|
|
|
|
// SilenceUsage is an option to silence usage when an error occurs.
|
|
SilenceUsage: true,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
symbols, err := client.MarketDataService.ListSymbols(args...)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
logrus.Infof("symbols: %+v", symbols)
|
|
return nil
|
|
},
|
|
}
|
|
|