[#683] cmd/neofs-adm: Add CLI flags for morph commands

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-07-09 12:53:10 +03:00 committed by Alex Vanin
parent c20eb15bd5
commit 6bf01a0a22
6 changed files with 185 additions and 0 deletions

View file

@ -0,0 +1,13 @@
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
}