2021-07-09 12:53:10 +03:00
|
|
|
package morph
|
|
|
|
|
|
|
|
import (
|
2024-02-01 10:20:17 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/ape"
|
2024-02-01 16:38:20 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/balance"
|
2024-02-01 17:28:10 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/config"
|
2024-02-01 17:36:26 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/container"
|
2024-02-02 09:06:24 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/contract"
|
2024-02-01 16:11:17 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/frostfsid"
|
2024-02-02 10:15:55 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/generate"
|
2024-02-02 10:25:04 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/initialize"
|
2024-02-01 17:41:44 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/netmap"
|
2024-02-14 08:58:43 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/nns"
|
2024-02-01 17:53:00 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/node"
|
2024-02-01 16:58:48 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/notary"
|
2024-02-01 15:55:33 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/policy"
|
2024-02-01 16:31:46 +03:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/proxy"
|
2021-07-09 12:53:10 +03:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2024-02-02 10:25:04 +03:00
|
|
|
// RootCmd is a root command of config section.
|
|
|
|
var RootCmd = &cobra.Command{
|
|
|
|
Use: "morph",
|
|
|
|
Short: "Section for morph network configuration commands",
|
|
|
|
}
|
2021-07-09 12:53:10 +03:00
|
|
|
|
|
|
|
func init() {
|
2024-02-02 10:15:55 +03:00
|
|
|
RootCmd.AddCommand(generate.RefillGasCmd)
|
2024-02-02 10:25:04 +03:00
|
|
|
RootCmd.AddCommand(initialize.Cmd)
|
2024-02-02 09:54:47 +03:00
|
|
|
RootCmd.AddCommand(contract.DeployCmd)
|
2024-02-02 10:15:55 +03:00
|
|
|
RootCmd.AddCommand(generate.GenerateStorageCmd)
|
2024-02-01 17:59:53 +03:00
|
|
|
RootCmd.AddCommand(netmap.ForceNewEpoch)
|
2024-02-01 17:53:00 +03:00
|
|
|
RootCmd.AddCommand(node.RemoveCmd)
|
2024-02-01 15:55:33 +03:00
|
|
|
RootCmd.AddCommand(policy.Set)
|
|
|
|
RootCmd.AddCommand(policy.Dump)
|
2024-02-02 09:06:24 +03:00
|
|
|
RootCmd.AddCommand(contract.DumpHashesCmd)
|
2024-02-01 17:28:10 +03:00
|
|
|
RootCmd.AddCommand(config.SetCmd)
|
|
|
|
RootCmd.AddCommand(config.DumpCmd)
|
2024-02-01 16:38:20 +03:00
|
|
|
RootCmd.AddCommand(balance.DumpCmd)
|
2024-02-02 09:49:03 +03:00
|
|
|
RootCmd.AddCommand(contract.UpdateCmd)
|
2024-02-01 17:36:26 +03:00
|
|
|
RootCmd.AddCommand(container.ListCmd)
|
|
|
|
RootCmd.AddCommand(container.RestoreCmd)
|
|
|
|
RootCmd.AddCommand(container.DumpCmd)
|
2024-02-02 10:15:55 +03:00
|
|
|
RootCmd.AddCommand(generate.GenerateAlphabetCmd)
|
2024-02-01 16:58:48 +03:00
|
|
|
RootCmd.AddCommand(notary.DepositCmd)
|
2024-02-01 17:41:44 +03:00
|
|
|
RootCmd.AddCommand(netmap.CandidatesCmd)
|
2023-12-21 16:33:37 +03:00
|
|
|
|
2024-02-01 10:20:17 +03:00
|
|
|
RootCmd.AddCommand(ape.Cmd)
|
2024-02-01 16:31:46 +03:00
|
|
|
RootCmd.AddCommand(proxy.AddAccountCmd)
|
|
|
|
RootCmd.AddCommand(proxy.RemoveAccountCmd)
|
2024-01-12 13:54:00 +03:00
|
|
|
|
2024-02-01 16:11:17 +03:00
|
|
|
RootCmd.AddCommand(frostfsid.Cmd)
|
2024-02-14 08:58:43 +03:00
|
|
|
RootCmd.AddCommand(nns.Cmd)
|
2023-12-21 12:26:47 +03:00
|
|
|
}
|