forked from TrueCloudLab/frostfs-node
26 lines
717 B
Go
26 lines
717 B
Go
|
package netmap
|
||
|
|
||
|
import (
|
||
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/util"
|
||
|
"github.com/spf13/cobra"
|
||
|
"github.com/spf13/viper"
|
||
|
)
|
||
|
|
||
|
var CandidatesCmd = &cobra.Command{
|
||
|
Use: "netmap-candidates",
|
||
|
Short: "List netmap candidates nodes",
|
||
|
PreRun: func(cmd *cobra.Command, _ []string) {
|
||
|
_ = viper.BindPFlag(util.EndpointFlag, cmd.Flags().Lookup(util.EndpointFlag))
|
||
|
_ = viper.BindPFlag(util.AlphabetWalletsFlag, cmd.Flags().Lookup(util.AlphabetWalletsFlag))
|
||
|
},
|
||
|
Run: listNetmapCandidatesNodes,
|
||
|
}
|
||
|
|
||
|
func initNetmapCandidatesCmd() {
|
||
|
CandidatesCmd.Flags().StringP(util.EndpointFlag, util.EndpointFlagShort, "", util.EndpointFlagDesc)
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
initNetmapCandidatesCmd()
|
||
|
}
|