forked from TrueCloudLab/frostfs-node
Evgenii Stratonikov
5521737f0b
Adopt EnableTraverseRunHooks to get rid of tracing boilerplate in multiple commands. Now adding `--trace` flag is sufficient for a command to support tracing. Finally, it looks how it _should_. Refs TrueCloudLab/frostfs-node#406 Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
27 lines
762 B
Go
27 lines
762 B
Go
package accounting
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/commonflags"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
// Cmd represents the accounting command.
|
|
var Cmd = &cobra.Command{
|
|
Use: "accounting",
|
|
Short: "Operations with accounts and balances",
|
|
Long: `Operations with accounts and balances`,
|
|
PersistentPreRun: func(cmd *cobra.Command, args []string) {
|
|
flags := cmd.Flags()
|
|
|
|
_ = viper.BindPFlag(commonflags.WalletPath, flags.Lookup(commonflags.WalletPath))
|
|
_ = viper.BindPFlag(commonflags.Account, flags.Lookup(commonflags.Account))
|
|
_ = viper.BindPFlag(commonflags.RPC, flags.Lookup(commonflags.RPC))
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
Cmd.AddCommand(accountingBalanceCmd)
|
|
|
|
initAccountingBalanceCmd()
|
|
}
|