mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 13:56:57 +00:00
15 lines
303 B
Go
15 lines
303 B
Go
package node
|
|
|
|
import (
|
|
"github.com/DeBrosOfficial/network/pkg/cli/production/uninstall"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var uninstallCmd = &cobra.Command{
|
|
Use: "uninstall",
|
|
Short: "Remove production services (requires sudo)",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
uninstall.Handle()
|
|
},
|
|
}
|