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.
16 lines
330 B
16 lines
330 B
package main
|
|
|
|
import (
|
|
"Open_IM/internal/rpc/organization"
|
|
"flag"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
rpcPort := flag.Int("port", 11200, "get RpcOrganizationPort from cmd,default 11200 as port")
|
|
flag.Parse()
|
|
fmt.Println("start organization rpc server, port: ", *rpcPort)
|
|
rpcServer := organization.NewServer(*rpcPort)
|
|
rpcServer.Run()
|
|
}
|