2021-07-09 09:53:10 +00:00
|
|
|
package morph
|
|
|
|
|
|
|
|
import (
|
2024-02-01 07:20:17 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/ape"
|
2024-02-01 13:38:20 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/balance"
|
2024-02-01 14:28:10 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/config"
|
2024-02-01 14:36:26 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/container"
|
2024-02-02 06:06:24 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/contract"
|
2024-02-01 13:11:17 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/frostfsid"
|
2024-02-02 07:15:55 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/generate"
|
2024-02-02 07:25:04 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/initialize"
|
2024-02-01 14:41:44 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/netmap"
|
2024-02-14 05:58:43 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/nns"
|
2024-02-01 14:53:00 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/node"
|
2024-02-01 13:58:48 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/notary"
|
2024-02-01 12:55:33 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/policy"
|
2024-02-01 13:31:46 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/morph/proxy"
|
2021-07-09 09:53:10 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
)
|
|
|
|
|
2024-02-02 07:25:04 +00: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 09:53:10 +00:00
|
|
|
|
|
|
|
func init() {
|
2024-02-02 07:15:55 +00:00
|
|
|
RootCmd.AddCommand(generate.RefillGasCmd)
|
2024-02-02 07:25:04 +00:00
|
|
|
RootCmd.AddCommand(initialize.Cmd)
|
2024-02-02 06:54:47 +00:00
|
|
|
RootCmd.AddCommand(contract.DeployCmd)
|
2024-02-02 07:15:55 +00:00
|
|
|
RootCmd.AddCommand(generate.GenerateStorageCmd)
|
2024-02-01 14:59:53 +00:00
|
|
|
RootCmd.AddCommand(netmap.ForceNewEpoch)
|
2024-02-01 14:53:00 +00:00
|
|
|
RootCmd.AddCommand(node.RemoveCmd)
|
2024-02-01 12:55:33 +00:00
|
|
|
RootCmd.AddCommand(policy.Set)
|
|
|
|
RootCmd.AddCommand(policy.Dump)
|
2024-02-02 06:06:24 +00:00
|
|
|
RootCmd.AddCommand(contract.DumpHashesCmd)
|
2024-02-01 14:28:10 +00:00
|
|
|
RootCmd.AddCommand(config.SetCmd)
|
|
|
|
RootCmd.AddCommand(config.DumpCmd)
|
2024-02-01 13:38:20 +00:00
|
|
|
RootCmd.AddCommand(balance.DumpCmd)
|
2024-02-02 06:49:03 +00:00
|
|
|
RootCmd.AddCommand(contract.UpdateCmd)
|
2024-02-01 14:36:26 +00:00
|
|
|
RootCmd.AddCommand(container.ListCmd)
|
|
|
|
RootCmd.AddCommand(container.RestoreCmd)
|
|
|
|
RootCmd.AddCommand(container.DumpCmd)
|
2024-02-02 07:15:55 +00:00
|
|
|
RootCmd.AddCommand(generate.GenerateAlphabetCmd)
|
2024-02-01 13:58:48 +00:00
|
|
|
RootCmd.AddCommand(notary.DepositCmd)
|
2024-02-01 14:41:44 +00:00
|
|
|
RootCmd.AddCommand(netmap.CandidatesCmd)
|
2023-12-21 13:33:37 +00:00
|
|
|
|
2024-02-01 07:20:17 +00:00
|
|
|
RootCmd.AddCommand(ape.Cmd)
|
2024-02-01 13:31:46 +00:00
|
|
|
RootCmd.AddCommand(proxy.AddAccountCmd)
|
|
|
|
RootCmd.AddCommand(proxy.RemoveAccountCmd)
|
2024-01-12 10:54:00 +00:00
|
|
|
|
2024-02-01 13:11:17 +00:00
|
|
|
RootCmd.AddCommand(frostfsid.Cmd)
|
2024-02-14 05:58:43 +00:00
|
|
|
RootCmd.AddCommand(nns.Cmd)
|
2023-12-21 09:26:47 +00:00
|
|
|
}
|