mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 18:36:57 +00:00
16 lines
330 B
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,
|
|
}
|