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/rpc/open_im_office/main.go

18 lines
378 B

3 years ago
package main
import (
rpc "Open_IM/internal/rpc/office"
"Open_IM/pkg/common/config"
3 years ago
"flag"
3 years ago
"fmt"
3 years ago
)
func main() {
defaultPorts := config.Config.RpcPort.OpenImOfficePort
rpcPort := flag.Int("port", defaultPorts[0], "rpc listening port")
3 years ago
flag.Parse()
3 years ago
fmt.Println("start office rpc server, port: ", *rpcPort)
3 years ago
rpcServer := rpc.NewOfficeServer(*rpcPort)
rpcServer.Run()
}