msg_gateway and msg_transfer modules

This commit is contained in:
Gordon
2021-05-26 19:24:25 +08:00
parent a7bedf1f79
commit f686fbb4ee
13 changed files with 948 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package main
import (
"Open_IM/src/msg_transfer/logic"
"sync"
)
func main() {
var wg sync.WaitGroup
wg.Add(1)
logic.Init()
logic.Run()
wg.Wait()
}