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