mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 05:12:45 +08:00
18 lines
297 B
Go
18 lines
297 B
Go
package cmd
|
|
|
|
import "github.com/spf13/cobra"
|
|
|
|
type ApiCmd struct {
|
|
*RootCmd
|
|
}
|
|
|
|
func NewApiCmd() *ApiCmd {
|
|
return &ApiCmd{NewRootCmd("api")}
|
|
}
|
|
|
|
func (a *ApiCmd) AddApi(f func(port int) error) {
|
|
a.Command.RunE = func(cmd *cobra.Command, args []string) error {
|
|
return f(a.getPortFlag(cmd))
|
|
}
|
|
}
|