mirror of
https://github.com/DeBrosOfficial/orama.git
synced 2026-03-17 15:46:58 +00:00
15 lines
279 B
Go
15 lines
279 B
Go
package node
|
|
|
|
import (
|
|
"github.com/DeBrosOfficial/network/pkg/cli/production/status"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var statusCmd = &cobra.Command{
|
|
Use: "status",
|
|
Short: "Show production service status",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
status.Handle()
|
|
},
|
|
}
|