mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 14:36:58 +00:00
11 lines
213 B
Go
11 lines
213 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/DeBrosOfficial/network/pkg/cli/cluster"
|
|
)
|
|
|
|
// HandleClusterCommand handles cluster management commands.
|
|
func HandleClusterCommand(args []string) {
|
|
cluster.HandleCommand(args)
|
|
}
|