Files
open-im-server/cmd/rpc/open_im_office/main.go
T

14 lines
218 B
Go
Raw Normal View History

2022-03-25 18:46:27 +08:00
package main
import (
rpc "Open_IM/internal/rpc/office"
"flag"
)
func main() {
rpcPort := flag.Int("port", 11100, "rpc listening port")
flag.Parse()
rpcServer := rpc.NewOfficeServer(*rpcPort)
rpcServer.Run()
}