mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
14 lines
250 B
Go
14 lines
250 B
Go
package main
|
|
|
|
import (
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
|
|
)
|
|
|
|
func main() {
|
|
msgTransferCmd := cmd.NewMsgTransferCmd()
|
|
msgTransferCmd.AddPrometheusPortFlag()
|
|
if err := msgTransferCmd.Exec(); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|