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.
Open-IM-Server/cmd/push/main.go

19 lines
270 B

4 years ago
package main
import (
2 years ago
"OpenIM/pkg/common/cmd"
"fmt"
"os"
4 years ago
)
func main() {
2 years ago
pushCmd := cmd.NewPushCmd()
pushCmd.AddPortFlag()
pushCmd.AddPrometheusPortFlag()
pushCmd.AddPush()
if err := pushCmd.Execute(); err != nil {
fmt.Println(err.Error())
os.Exit(1)
2 years ago
}
4 years ago
}