ceremonyclient/client/cmd/balance.go

20 lines
318 B
Go
Raw Normal View History

package cmd
import (
"fmt"
"github.com/spf13/cobra"
)
var balanceCmd = &cobra.Command{
Use: "balance",
Short: "Lists the total balance of tokens in the managing account",
Run: func(cmd *cobra.Command, args []string) {
fmt.Println("1545.381923 QUIL")
},
}
func init() {
tokenCmd.AddCommand(balanceCmd)
}