mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
35 lines
618 B
Go
35 lines
618 B
Go
package main
|
|
|
|
import (
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var accountsCmd = &cobra.Command{
|
|
Use: "accounts",
|
|
|
|
// SilenceUsage is an option to silence usage when an error occurs.
|
|
SilenceUsage: true,
|
|
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if len(args) > 0 {
|
|
account, err := client.AccountService.GetAccount(args[0])
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
logrus.Infof("account: %+v", account)
|
|
return nil
|
|
}
|
|
|
|
accounts, err := client.AccountService.ListAccounts()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
logrus.Infof("accounts: %+v", accounts)
|
|
return nil
|
|
},
|
|
}
|
|
|