mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-04 17:15:58 +08:00
14 lines
191 B
Go
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`,
|
||
|
|
}
|
||
|
|
}
|