forked from TrueCloudLab/frostfs-node
6bf01a0a22
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
13 lines
288 B
Go
13 lines
288 B
Go
package morph
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
func forceNewEpochCmd(cmd *cobra.Command, args []string) error {
|
|
cmd.Println("endpoint:", viper.GetString(endpointFlag))
|
|
cmd.Println("alphabet-wallets:", viper.GetString(alphabetWalletsFlag))
|
|
|
|
return nil
|
|
}
|