George Bartolomey
1032075a21
Removed `frostfs-cli util locode` subcommand. Alternative command could be found in `git.frostfs.info/TrueCloudLab/frostfs-locode-db`. Signed-off-by: George Bartolomey <george@bh4.ru>
31 lines
693 B
Go
31 lines
693 B
Go
package util
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-cli/internal/commonflags"
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
var Cmd = &cobra.Command{
|
|
Use: "util",
|
|
Short: "Utility operations",
|
|
PersistentPreRun: func(cmd *cobra.Command, _ []string) {
|
|
flags := cmd.Flags()
|
|
|
|
_ = viper.BindPFlag(commonflags.GenerateKey, flags.Lookup(commonflags.GenerateKey))
|
|
_ = viper.BindPFlag(commonflags.WalletPath, flags.Lookup(commonflags.WalletPath))
|
|
_ = viper.BindPFlag(commonflags.Account, flags.Lookup(commonflags.Account))
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
Cmd.AddCommand(
|
|
signCmd,
|
|
convertCmd,
|
|
keyerCmd,
|
|
)
|
|
|
|
initSignCmd()
|
|
initConvertCmd()
|
|
initKeyerCmd()
|
|
}
|