orama/pkg/cli/cmd/node/migrate.go

16 lines
330 B
Go

package node
import (
"github.com/DeBrosOfficial/network/pkg/cli/production/migrate"
"github.com/spf13/cobra"
)
var migrateCmd = &cobra.Command{
Use: "migrate",
Short: "Migrate from old unified setup (requires sudo)",
Run: func(cmd *cobra.Command, args []string) {
migrate.Handle(args)
},
DisableFlagParsing: true,
}