You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
309 B
19 lines
309 B
package main
|
|
|
|
import (
|
|
"OpenIM/pkg/common/cmd"
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
msgGatewayCmd := cmd.NewMsgGatewayCmd()
|
|
msgGatewayCmd.AddWsPortFlag()
|
|
msgGatewayCmd.AddPortFlag()
|
|
msgGatewayCmd.AddPrometheusPortFlag()
|
|
if err := msgGatewayCmd.Exec(); err != nil {
|
|
fmt.Println(err.Error())
|
|
os.Exit(1)
|
|
}
|
|
}
|