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

18 lines
241 B

4 years ago
package main
import (
"Open_IM/internal/push/logic"
4 years ago
"flag"
"sync"
)
func main() {
3 years ago
rpcPort := flag.Int("port", 10700, "rpc listening port")
4 years ago
flag.Parse()
var wg sync.WaitGroup
wg.Add(1)
logic.Init(*rpcPort)
logic.Run()
wg.Wait()
}