Files
open-im-server/pkg/common/cmd/root.go
T
wangchuxiao 52d8ec6aee test cobra
2023-03-07 12:12:16 +08:00

14 lines
191 B
Go

package cmd
import (
"github.com/spf13/cobra"
)
func NewRootCmd() *cobra.Command {
return &cobra.Command{
Use: "start",
Short: "Start the server",
Long: `Start the server`,
}
}