mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
16 lines
283 B
Go
16 lines
283 B
Go
package main
|
|
|
|
import (
|
|
rpc "Open_IM/internal/rpc/office"
|
|
"flag"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
rpcPort := flag.Int("port", 11100, "rpc listening port")
|
|
flag.Parse()
|
|
fmt.Println("start office rpc server, port: ", *rpcPort)
|
|
rpcServer := rpc.NewOfficeServer(*rpcPort)
|
|
rpcServer.Run()
|
|
}
|